mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #10388 from benolee/fix-parser-semicolon
add missing semicolon to journey parser.y
This commit is contained in:
commit
a460ba4c0a
1 changed files with 1 additions and 0 deletions
|
@ -36,6 +36,7 @@ rule
|
|||
;
|
||||
literal
|
||||
: LITERAL { result = Literal.new(val.first) }
|
||||
;
|
||||
dot
|
||||
: DOT { result = Dot.new(val.first) }
|
||||
;
|
||||
|
|
Loading…
Reference in a new issue