diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_parser/src/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_parser/src/parser.rs b/crates/ra_parser/src/parser.rs index 76e2d4f7d..faa63d53f 100644 --- a/crates/ra_parser/src/parser.rs +++ b/crates/ra_parser/src/parser.rs | |||
@@ -164,7 +164,7 @@ impl<'t> Parser<'t> { | |||
164 | assert!(self.eat(kind)); | 164 | assert!(self.eat(kind)); |
165 | } | 165 | } |
166 | 166 | ||
167 | /// Advances the parser by one token with composite puncts handled | 167 | /// Advances the parser by one token |
168 | pub(crate) fn bump_any(&mut self) { | 168 | pub(crate) fn bump_any(&mut self) { |
169 | let kind = self.nth(0); | 169 | let kind = self.nth(0); |
170 | if kind == EOF { | 170 | if kind == EOF { |