summaryrefslogtreecommitdiff
path: root/src/syntax/mod.rs
diff options
context:
space:
mode:
authorMartin <mhaug@live.de>2020-08-31 11:58:15 +0200
committerGitHub <noreply@github.com>2020-08-31 11:58:15 +0200
commit696560622d52e0e8c7a09df4851d25f9ea022899 (patch)
tree542e7c694e91d8cc91fa97a328e9bda0567db679 /src/syntax/mod.rs
parentfe51ad2e7c25f1291995ab3c18595d19a7420e11 (diff)
parent181f756a9e8f7b664101058fe91e36b3858c2d02 (diff)
Merge pull request #13 from typst/fmt
Formatting with rustfmt
Diffstat (limited to 'src/syntax/mod.rs')
-rw-r--r--src/syntax/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax/mod.rs b/src/syntax/mod.rs
index 596291a5..a9fe7c2e 100644
--- a/src/syntax/mod.rs
+++ b/src/syntax/mod.rs
@@ -37,9 +37,9 @@ impl Debug for Ident {
#[cfg(test)]
mod tests {
- use std::fmt::Debug;
- use crate::prelude::*;
use super::span;
+ use crate::prelude::*;
+ use std::fmt::Debug;
/// Assert that expected and found are equal, printing both and panicking
/// and the source of their test case if they aren't.