Skip to content

Commit

Permalink
allow forward slash in names
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmarmon committed Jan 2, 2017
1 parent 104dc43 commit c65d92f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphql.bnf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CommentChar ::= #"[\x{9}\x{20}-\uFFFF]"
Comment ::= "#" CommentChar* <LineTerminator>
Comma ::= ","
Punctuator ::= #"[!$().:=@\[\]\{\}]"
Name ::= #"[_A-Za-z][_0-9A-Za-z]*"
Name ::= #"[\/_A-Za-z][_0-9A-Za-z]*"
NegativeSign ::= "-"
NonZeroDigit ::= #"[1-9]"
Digit ::= #"[0-9]"
Expand Down

0 comments on commit c65d92f

Please sign in to comment.