Skip to content

Commit b5aedef

Browse files
committed
Fix variable name and grammar issues;
1 parent 46f9ac6 commit b5aedef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spec/Section 2 -- Language.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Punctuator :: one of ! $ ( ) ... : = @ [ ] { }
144144

145145
GraphQL documents include punctuation in order to describe structure. GraphQL
146146
is a data description language and not a programming language, therefore GraphQL
147-
lacks the punctionation often used to describe mathematical expressions.
147+
lacks the punctuation often used to describe mathematical expressions.
148148

149149

150150
### Names

spec/Section 5 -- Validation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ but this is not valid on a non-null argument.
572572

573573
```!graphql
574574
fragment missingRequiredArg on Arguments {
575-
notNullBooleanArgField
575+
nonNullBooleanArgField
576576
}
577577
```
578578

@@ -594,7 +594,7 @@ fragment missingRequiredArg on Arguments {
594594
Fragment definitions are referenced in fragment spreads by name. To avoid
595595
ambiguity, each fragment's name must be unique within a document.
596596

597-
Inline fragments are not considered fragment definitions, and unaffected by this
597+
Inline fragments are not considered fragment definitions, and are unaffected by this
598598
validation rule.
599599

600600
For example the following document is valid:

0 commit comments

Comments
 (0)