diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-07-30 11:01:43 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-30 11:01:43 +0100 |
commit | dc49f88f17c760bb105625d8dd69f439ff7cdc9e (patch) | |
tree | ab84c1ee11371a74587209391e2b7cb1b3e67feb /crates/ra_parser/src/grammar.rs | |
parent | 74864d560b9293174c82fdee2b9d15991ebf075f (diff) | |
parent | 026e4e6af1e58843f3535f6e0f5365d0c2529e4e (diff) |
Merge #5583
5583: Rename Rename r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_parser/src/grammar.rs')
-rw-r--r-- | crates/ra_parser/src/grammar.rs | 2 |
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 | ||