1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

add missing semicolon to journey parser.y

This commit is contained in:
Ben Holley 2013-04-30 13:43:59 -05:00
parent 2088bf2798
commit 78701a82ef

View file

@ -36,6 +36,7 @@ rule
;
literal
: LITERAL { result = Literal.new(val.first) }
;
dot
: DOT { result = Dot.new(val.first) }
;