Skip to content

Commit

Permalink
Remove dot from builtin
Browse files Browse the repository at this point in the history
  • Loading branch information
stasm committed Jan 31, 2017
1 parent 3bce91a commit 7120a0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fluent.ebnf
Expand Up @@ -13,7 +13,7 @@ NL ::= [#xA#xD]+ /* line feed, carriage return */
identifier ::= [a-zA-Z_?-] ([a-zA-Z0-9_?-])*
variable ::= '$' identifier
keyword ::= [a-zA-Z_.?-] ([a-zA-Z0-9_.?- ]* [a-zA-Z0-9_.?-])?
builtin ::= [A-Z_.?-]+
builtin ::= [A-Z_?-]+
number ::= [0-9]+ ('.' [0-9]+)?

variant-key ::= number | keyword
Expand Down

0 comments on commit 7120a0d

Please sign in to comment.