summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/handlebars.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handlebars.l b/src/handlebars.l
index cc190b1..546852d 100644
--- a/src/handlebars.l
+++ b/src/handlebars.l
@@ -62,7 +62,7 @@ ID [^\s!"#%-,\.\/;->@\[-\^`\{-~]+/{LOOKAHEAD}
<mu>"=" return 'EQUALS';
<mu>".." return 'ID';
-<mu>"."/{LOOKAHEAD} return 'ID';
+<mu>"."/{LOOKAHEAD} return 'ID';
<mu>[\/.] return 'SEP';
<mu>\s+ /*ignore whitespace*/
<mu>"}}}" this.popState(); return 'CLOSE_UNESCAPED';