@@ -21,7 +21,7 @@ point in time.
2121
2222** Type system evolution**
2323
24- As GraphQL type system schema evolve over time by adding new types and new
24+ As GraphQL type system schema evolves over time by adding new types and new
2525fields, it is possible that a request which was previously valid could later
2626become invalid. Any change that can cause a previously valid request to become
2727invalid is considered a * breaking change* . GraphQL services and schema
@@ -694,7 +694,7 @@ extend type Query {
694694}
695695```
696696
697- Order does not matter in arguments . Therefore both the following example are valid .
697+ Order does not matter in arguments . Therefore both the following examples are valid .
698698
699699```graphql example
700700fragment multipleArgs on Arguments {
@@ -1245,7 +1245,7 @@ fragment dogOrHumanFragment on DogOrHuman {
12451245}
12461246```
12471247
1248- is consider valid because {Dog} implements interface {Pet} and is a
1248+ is considered valid because {Dog} implements interface {Pet} and is a
12491249member of {DogOrHuman}.
12501250
12511251However
@@ -1920,7 +1920,7 @@ query intCannotGoIntoBoolean($intArg: Int) {
19201920}
19211921```
19221922
1923- ${intArg} typed as {Int} cannot be used as a argument to {booleanArg}, typed as {Boolean}.
1923+ ${intArg} typed as {Int} cannot be used as an argument to {booleanArg}, typed as {Boolean}.
19241924
19251925List cardinality must also be the same. For example, lists cannot be passed into singular
19261926values.
@@ -1992,7 +1992,7 @@ In the example below, an optional variable `$booleanArg` is allowed to be used
19921992in the non-null argument (` nonNullBooleanArg ` ) because the variable provides
19931993a default value in the query. This behavior is explicitly supported for
19941994compatibility with earlier editions of this specification. GraphQL authoring
1995- tools may wish to report this is a warning with the suggestion to replace
1995+ tools may wish to report this as a warning with the suggestion to replace
19961996` Boolean ` with ` Boolean! ` to avoid ambiguity.
19971997
19981998``` graphql example
@@ -2003,5 +2003,5 @@ query booleanArgQueryWithDefault($booleanArg: Boolean = true) {
20032003}
20042004```
20052005
2006- Note: The value {null} could still be provided to a such a variable at runtime.
2006+ Note: The value {null} could still be provided to such a variable at runtime.
20072007A non-null argument must produce a field error if provided a {null} value.
0 commit comments