aboutsummaryrefslogtreecommitdiff
path: root/src/parser/event_parser/grammar/items.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/event_parser/grammar/items.rs')
-rw-r--r--src/parser/event_parser/grammar/items.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/event_parser/grammar/items.rs b/src/parser/event_parser/grammar/items.rs
index a14f6de77..d2bfeac97 100644
--- a/src/parser/event_parser/grammar/items.rs
+++ b/src/parser/event_parser/grammar/items.rs
@@ -2,7 +2,7 @@ use super::*;
2 2
3pub(super) fn mod_contents(p: &mut Parser) { 3pub(super) fn mod_contents(p: &mut Parser) {
4 attributes::inner_attributes(p); 4 attributes::inner_attributes(p);
5 many(p, |p| { 5 repeat(p, |p| {
6 skip_to_first( 6 skip_to_first(
7 p, item_first, mod_contents_item, 7 p, item_first, mod_contents_item,
8 "expected item", 8 "expected item",