Skip to content

Commit

Permalink
correct seperator in ebnf's keyword-argument
Browse files Browse the repository at this point in the history
  • Loading branch information
GlenDC committed Jan 21, 2017
1 parent be77dbb commit 104e11b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fluent.ebnf
Expand Up @@ -46,5 +46,5 @@ call-expression ::= builtin '(' __ arglist? __ ')';
arglist ::= argument (__ ',' __ arglist)?;
argument ::= expression
| keyword-argument;
keyword-argument ::= identifier __ '=' __ quoted-pattern;
keyword-argument ::= identifier __ ':' __ quoted-pattern;
member-expression ::= identifier '[' keyword ']';

0 comments on commit 104e11b

Please sign in to comment.