aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_parser/src/grammar.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-07-30 10:58:41 +0100
committerAleksey Kladov <[email protected]>2020-07-30 10:58:41 +0100
commit6cd2131cafd29ae17442efbcce652bd447576f27 (patch)
tree4ceffb487f853772eeef77948bb7221949640a3b /crates/ra_parser/src/grammar.rs
parent7d09e5ed618b9b9d6e00b57b24db0b9c8a8c12d7 (diff)
Rename Rename
Diffstat (limited to 'crates/ra_parser/src/grammar.rs')
-rw-r--r--crates/ra_parser/src/grammar.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_parser/src/grammar.rs b/crates/ra_parser/src/grammar.rs
index 3350e23b9..7dfac2813 100644
--- a/crates/ra_parser/src/grammar.rs
+++ b/crates/ra_parser/src/grammar.rs
@@ -224,7 +224,7 @@ fn opt_alias(p: &mut Parser) {
224 if !p.eat(T![_]) { 224 if !p.eat(T![_]) {
225 name(p); 225 name(p);
226 } 226 }
227 m.complete(p, ALIAS); 227 m.complete(p, RENAME);
228 } 228 }
229} 229}
230 230