From ddca264f3758f671ab446581be08a312fed1efff Mon Sep 17 00:00:00 2001 From: Arun Ponniah Sethuramalingam Date: Thu, 9 Aug 2018 16:46:02 -0700 Subject: [PATCH 1/2] Added missing ']' on List input coercion example. --- spec/Section 3 -- Type System.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/Section 3 -- Type System.md b/spec/Section 3 -- Type System.md index 00bbb8e49..7a55e0492 100644 --- a/spec/Section 3 -- Type System.md +++ b/spec/Section 3 -- Type System.md @@ -1489,7 +1489,7 @@ Expected Type | Provided Value | Coerced Value `[Int]` | `[1, "b", true]` | Error: Incorrect item value `[Int]` | `1` | `[1]` `[Int]` | `null` | `null` -`[[Int]]` | `[[1], [2, 3]]` | `[[1], [2, 3]` +`[[Int]]` | `[[1], [2, 3]]` | `[[1], [2, 3]]` `[[Int]]` | `[1, 2, 3]` | Error: Incorrect item value `[[Int]]` | `1` | `[[1]]` `[[Int]]` | `null` | `null` From 40413791483c7017ebfc0acf2361c7fe05808f5b Mon Sep 17 00:00:00 2001 From: Arun Ponniah Sethuramalingam Date: Thu, 9 Aug 2018 18:00:06 -0700 Subject: [PATCH 2/2] Fix grammatical mistake. --- spec/Section 3 -- Type System.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/Section 3 -- Type System.md b/spec/Section 3 -- Type System.md index 7a55e0492..409c2094c 100644 --- a/spec/Section 3 -- Type System.md +++ b/spec/Section 3 -- Type System.md @@ -1746,7 +1746,7 @@ query myQuery($someTest: Boolean) { ``` Note: Neither `@skip` nor `@include` has precedence over the other. In the case -that both the `@skip` and `@include` directives are provided in on the same the +that both the `@skip` and `@include` directives are provided on the same field or fragment, it *must* be queried only if the `@skip` condition is false *and* the `@include` condition is true. Stated conversely, the field or fragment must *not* be queried if either the `@skip` condition is true *or* the