File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ Punctuator :: one of ! $ ( ) ... : = @ [ ] { }
144
144
145
145
GraphQL documents include punctuation in order to describe structure. GraphQL
146
146
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.
148
148
149
149
150
150
### Names
Original file line number Diff line number Diff line change @@ -572,7 +572,7 @@ but this is not valid on a non-null argument.
572
572
573
573
``` !graphql
574
574
fragment missingRequiredArg on Arguments {
575
- notNullBooleanArgField
575
+ nonNullBooleanArgField
576
576
}
577
577
```
578
578
@@ -594,7 +594,7 @@ fragment missingRequiredArg on Arguments {
594
594
Fragment definitions are referenced in fragment spreads by name. To avoid
595
595
ambiguity, each fragment's name must be unique within a document.
596
596
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
598
598
validation rule.
599
599
600
600
For example the following document is valid:
You can’t perform that action at this time.
0 commit comments