summaryrefslogtreecommitdiff
path: root/crates/typst-syntax/src/source.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-11-19 16:34:38 +0100
committerLaurenz <laurmaedje@gmail.com>2023-11-19 16:34:38 +0100
commit2da619e17cb48efd468818ea35793b3f90b8aaea (patch)
treee38012152337099a334c00247f2b27e406c9427f /crates/typst-syntax/src/source.rs
parentea987ef4a3cb1e16b73e9d97f4a736f3a611b275 (diff)
Streamline imports
Diffstat (limited to 'crates/typst-syntax/src/source.rs')
-rw-r--r--crates/typst-syntax/src/source.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/typst-syntax/src/source.rs b/crates/typst-syntax/src/source.rs
index f3392889..4bf4045a 100644
--- a/crates/typst-syntax/src/source.rs
+++ b/crates/typst-syntax/src/source.rs
@@ -7,9 +7,9 @@ use std::sync::Arc;
use comemo::Prehashed;
-use super::reparser::reparse;
-use super::{is_newline, parse, FileId, LinkedNode, Span, SyntaxNode};
+use crate::reparser::reparse;
use crate::VirtualPath;
+use crate::{is_newline, parse, FileId, LinkedNode, Span, SyntaxNode};
/// A source file.
///