We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7c1fb2 commit c733527Copy full SHA for c733527
graphql/core/language/parser.py
@@ -92,7 +92,7 @@ def peek(parser, kind):
92
def skip(parser, kind):
93
"""If the next token is of the given kind, return true after advancing
94
the parser. Otherwise, do not change the parser state
95
- and return False."""
+ and throw an error."""
96
match = parser.token.kind == kind
97
if match:
98
advance(parser)
0 commit comments