diff --git a/spec/Section 3 -- Type System.md b/spec/Section 3 -- Type System.md index 00bbb8e49..0a5741e0a 100644 --- a/spec/Section 3 -- Type System.md +++ b/spec/Section 3 -- Type System.md @@ -1489,12 +1489,11 @@ 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` - ## Non-Null By default, all types in GraphQL are nullable; the {null} value is a valid