aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/parser_api.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/src/parser_api.rs')
-rw-r--r--crates/ra_syntax/src/parser_api.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/parser_api.rs b/crates/ra_syntax/src/parser_api.rs
index 3487aef85..3148371c5 100644
--- a/crates/ra_syntax/src/parser_api.rs
+++ b/crates/ra_syntax/src/parser_api.rs
@@ -112,7 +112,7 @@ impl<'t> Parser<'t> {
112 112
113 /// Create an error node and consume the next token. 113 /// Create an error node and consume the next token.
114 pub(crate) fn err_and_bump(&mut self, message: &str) { 114 pub(crate) fn err_and_bump(&mut self, message: &str) {
115 self.err_recover(message, TokenSet::EMPTY); 115 self.err_recover(message, TokenSet::empty());
116 } 116 }
117 117
118 /// Create an error node and consume the next token. 118 /// Create an error node and consume the next token.