diff options
author | Aleksey Kladov <[email protected]> | 2018-08-11 08:05:26 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-08-11 08:05:26 +0100 |
commit | e69c70e2a208fd89d4d49a104f5516c55546309e (patch) | |
tree | 8046552948a5faf704832184ee7c3da23ea8eb2c /crates/libsyntax2/src/grammar | |
parent | 7698d37fa45735aa090512045605c47f5615e3f5 (diff) |
ENUM_ITEM -> ENUM
Diffstat (limited to 'crates/libsyntax2/src/grammar')
-rw-r--r-- | crates/libsyntax2/src/grammar/items/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/libsyntax2/src/grammar/items/mod.rs b/crates/libsyntax2/src/grammar/items/mod.rs index 1125daed9..be4ff976a 100644 --- a/crates/libsyntax2/src/grammar/items/mod.rs +++ b/crates/libsyntax2/src/grammar/items/mod.rs | |||
@@ -175,7 +175,7 @@ fn items_without_modifiers(p: &mut Parser) -> Option<SyntaxKind> { | |||
175 | } | 175 | } |
176 | ENUM_KW => { | 176 | ENUM_KW => { |
177 | structs::enum_item(p); | 177 | structs::enum_item(p); |
178 | ENUM_ITEM | 178 | ENUM |
179 | } | 179 | } |
180 | USE_KW => { | 180 | USE_KW => { |
181 | use_item::use_item(p); | 181 | use_item::use_item(p); |