Skip to content

Commit

Permalink
Add missing '&' to Punctuator production (#573) (#574)
Browse files Browse the repository at this point in the history
* Add missing '&' to Punctuator production (#573)

* Order by code point value

* Order by code point value
  • Loading branch information
CornedBee authored and leebyron committed Jul 3, 2019
1 parent f9cf139 commit 51337d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/Appendix B -- Grammar Summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Token ::
- FloatValue
- StringValue

Punctuator :: one of ! $ ( ) ... : = @ [ ] { | }
Punctuator :: one of ! $ & ( ) ... : = @ [ ] { | }

Name :: /[_A-Za-z][_0-9A-Za-z]*/

Expand Down
2 changes: 1 addition & 1 deletion spec/Section 2 -- Language.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ white space characters are permitted between the characters defining a

### Punctuators

Punctuator :: one of ! $ ( ) ... : = @ [ ] { | }
Punctuator :: one of ! $ & ( ) ... : = @ [ ] { | }

GraphQL documents include punctuation in order to describe structure. GraphQL
is a data description language and not a programming language, therefore GraphQL
Expand Down

0 comments on commit 51337d6

Please sign in to comment.