Skip to content

Commit 23fa23b

Browse files
committed
Remove duplicate coercion for brevity
1 parent 8241d78 commit 23fa23b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

spec/Section 3 -- Type System.md

-4
Original file line numberDiff line numberDiff line change
@@ -1949,10 +1949,6 @@ Following are examples of result coercion with various types and values:
19491949

19501950
| Expected Type | Internal Value | Coerced Result |
19511951
| ------------- | --------------- | ------------------------------------------- |
1952-
| `[Int]` | `[1, 2, 3]` | `[1, 2, 3]` |
1953-
| `[Int]` | `null` | `null` |
1954-
| `[Int]` | `[1, 2, null]` | `[1, 2, null]` |
1955-
| `[Int]` | `[1, 2, Error]` | `[1, 2, null]` (With logged error) |
19561952
| `[Int]*` | `[1, 2, 3]` | `[1, 2, 3]` |
19571953
| `[Int]*` | `null` | `null` (With logged coercion error) |
19581954
| `[Int]*` | `[1, 2, null]` | `[1, 2, null]` |

0 commit comments

Comments
 (0)