Skip to content

Commit 1278654

Browse files
saponniahleebyron
authored andcommitted
Editorial changes on the spec document. (#493)
* Added missing ']' on List input coercion example. * Fix grammatical mistake.
1 parent b83ca98 commit 1278654

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/Section 3 -- Type System.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1489,7 +1489,7 @@ Expected Type | Provided Value | Coerced Value
14891489
`[Int]` | `[1, "b", true]` | Error: Incorrect item value
14901490
`[Int]` | `1` | `[1]`
14911491
`[Int]` | `null` | `null`
1492-
`[[Int]]` | `[[1], [2, 3]]` | `[[1], [2, 3]`
1492+
`[[Int]]` | `[[1], [2, 3]]` | `[[1], [2, 3]]`
14931493
`[[Int]]` | `[1, 2, 3]` | Error: Incorrect item value
14941494
`[[Int]]` | `1` | `[[1]]`
14951495
`[[Int]]` | `null` | `null`
@@ -1745,7 +1745,7 @@ query myQuery($someTest: Boolean) {
17451745
```
17461746

17471747
Note: Neither `@skip` nor `@include` has precedence over the other. In the case
1748-
that both the `@skip` and `@include` directives are provided in on the same the
1748+
that both the `@skip` and `@include` directives are provided on the same
17491749
field or fragment, it *must* be queried only if the `@skip` condition is false
17501750
*and* the `@include` condition is true. Stated conversely, the field or fragment
17511751
must *not* be queried if either the `@skip` condition is true *or* the

0 commit comments

Comments
 (0)