Skip to content

Commit 70ba1d8

Browse files
committed
Merge pull request #35 from pushrax/master
Fix a few typos
2 parents aaa7789 + c3eccce commit 70ba1d8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ specification-compliant GraphQL query language parser and lexer.
558558

559559
### Validation
560560

561-
By using the type system, it can be pre-determined whether a GraphQL query
561+
By using the type system, it can be predetermined whether a GraphQL query
562562
is valid or not. This allows servers and clients to effectively inform
563563
developers when an invalid query has been created, without having to rely
564564
on runtime checks.

Section 2 -- Language.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ commas do not represent missing values.
236236

237237
**Input Object**
238238

239-
Input object literals are un-ordered lists of keyed input values wrapped in
239+
Input object literals are unordered lists of keyed input values wrapped in
240240
curly-braces `{ }`. The values of an object literal may be any input value
241241
literal or variable (ex. `{ name: "Hello world", score: 1.0 }`). We refer to
242242
literal representation of input objects as "object literals."

Section 3 -- Type System.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ query myQuery($someTest: Boolean) {
770770
}
771771
```
772772

773-
The `@skip` directive has precidence over the `@include` directive should both
773+
The `@skip` directive has precedence over the `@include` directive should both
774774
be provided in the same context.
775775

776776

Section 4 -- Introspection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ Fields
277277
Input objects are composite types used as inputs into queries defined as a list
278278
of named input values.
279279

280-
For example the an input object `Point` could be defined as:
280+
For example the input object `Point` could be defined as:
281281

282282
```
283283
type Point {

Section 5 -- Validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ fragment goodNonNullArg on Arguments {
425425

426426
```
427427

428-
On a field with a a nullable arg, that argument can be omitted.
428+
The argument can be omitted from a field with a nullable argument.
429429

430430
Therefore the following query is valid:
431431

0 commit comments

Comments
 (0)