aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/grammar/items
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-11 08:04:47 +0100
committerAleksey Kladov <[email protected]>2018-08-11 08:04:47 +0100
commit7698d37fa45735aa090512045605c47f5615e3f5 (patch)
tree4c81ec4f7f7b579860fc8a1c1cd981042cc8ee46 /crates/libsyntax2/src/grammar/items
parentce898183b83eb2cf86c8c6ceeeac16ef68fdc802 (diff)
STRUCT_ITEM -> STRUCT
Diffstat (limited to 'crates/libsyntax2/src/grammar/items')
-rw-r--r--crates/libsyntax2/src/grammar/items/mod.rs2
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 3bf906f85..1125daed9 100644
--- a/crates/libsyntax2/src/grammar/items/mod.rs
+++ b/crates/libsyntax2/src/grammar/items/mod.rs
@@ -171,7 +171,7 @@ fn items_without_modifiers(p: &mut Parser) -> Option<SyntaxKind> {
171 consider removing this semicolon" 171 consider removing this semicolon"
172 ); 172 );
173 } 173 }
174 STRUCT_ITEM 174 STRUCT
175 } 175 }
176 ENUM_KW => { 176 ENUM_KW => {
177 structs::enum_item(p); 177 structs::enum_item(p);