Skip to content

Commit

Permalink
Remove duplicate coercion for brevity
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie committed Oct 4, 2023
1 parent 8241d78 commit 23fa23b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions spec/Section 3 -- Type System.md
Original file line number Diff line number Diff line change
Expand Up @@ -1949,10 +1949,6 @@ Following are examples of result coercion with various types and values:

| Expected Type | Internal Value | Coerced Result |
| ------------- | --------------- | ------------------------------------------- |
| `[Int]` | `[1, 2, 3]` | `[1, 2, 3]` |
| `[Int]` | `null` | `null` |
| `[Int]` | `[1, 2, null]` | `[1, 2, null]` |
| `[Int]` | `[1, 2, Error]` | `[1, 2, null]` (With logged error) |
| `[Int]*` | `[1, 2, 3]` | `[1, 2, 3]` |
| `[Int]*` | `null` | `null` (With logged coercion error) |
| `[Int]*` | `[1, 2, null]` | `[1, 2, null]` |
Expand Down

0 comments on commit 23fa23b

Please sign in to comment.