diff --git a/spec/Section 3 -- Type System.md b/spec/Section 3 -- Type System.md index 4f9356f0c..e52519fb7 100644 --- a/spec/Section 3 -- Type System.md +++ b/spec/Section 3 -- Type System.md @@ -1780,7 +1780,9 @@ Following are examples of input coercion with various list types and values: | `[Int]` | `1` | `[1]` | | `[Int]` | `null` | `null` | | `[[Int]]` | `[[1], [2, 3]]` | `[[1], [2, 3]]` | -| `[[Int]]` | `[1, 2, 3]` | Error: Incorrect item value | +| `[[Int]]` | `[1, 2, 3]` | `[[1], [2], [3]]` | +| `[[Int]]` | `[1, null, 3]` | `[[1], null, [3]]` | +| `[[Int]]` | `[[1], ["b"]]` | Error: Incorrect item value | | `[[Int]]` | `1` | `[[1]]` | | `[[Int]]` | `null` | `null` |