Skip to content

Commit b2ff6b3

Browse files
committed
Add another example
1 parent 7e13d5c commit b2ff6b3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

spec/Section 3 -- Type System.md

+1
Original file line numberDiff line numberDiff line change
@@ -1781,6 +1781,7 @@ Following are examples of input coercion with various list types and values:
17811781
| `[Int]` | `null` | `null` |
17821782
| `[[Int]]` | `[[1], [2, 3]]` | `[[1], [2, 3]]` |
17831783
| `[[Int]]` | `[1, 2, 3]` | `[[1], [2], [3]]` |
1784+
| `[[Int]]` | `[1, [2], 3]` | `[[1], [2], [3]]` |
17841785
| `[[Int]]` | `[1, null, 3]` | `[[1], null, [3]]` |
17851786
| `[[Int]]` | `[[1], ["b"]]` | Error: Incorrect item value |
17861787
| `[[Int]]` | `1` | `[[1]]` |

0 commit comments

Comments
 (0)