aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_mbe/src/parser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_mbe/src/parser.rs')
-rw-r--r--crates/ra_mbe/src/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_mbe/src/parser.rs b/crates/ra_mbe/src/parser.rs
index 1e5dafbdf..6b46a1673 100644
--- a/crates/ra_mbe/src/parser.rs
+++ b/crates/ra_mbe/src/parser.rs
@@ -1,8 +1,8 @@
1//! Parser recognizes special macro syntax, `$var` and `$(repeat)*`, in token 1//! Parser recognizes special macro syntax, `$var` and `$(repeat)*`, in token
2//! trees. 2//! trees.
3 3
4use ra_syntax::SmolStr;
5use smallvec::SmallVec; 4use smallvec::SmallVec;
5use syntax::SmolStr;
6 6
7use crate::{tt_iter::TtIter, ExpandError}; 7use crate::{tt_iter::TtIter, ExpandError};
8 8