aboutsummaryrefslogtreecommitdiffstats
path: root/src/parser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.rs')
-rw-r--r--src/parser.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parser.rs b/src/parser.rs
index 2a093c1..7dc5bcf 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -598,7 +598,8 @@ where
whitespace_separator(),
token('{'),
map_collection(),
- token('}'),
+ token('}')
+ .message("missing closing '}'"),
).map(|(_, _, trigger, _, _, collection, _)|
Mode {
trigger: trigger,