Skip to content

Commit

Permalink
Merge pull request #4894 from Austin-X/patch-2
Browse files Browse the repository at this point in the history
Fix alignment of a value in the "Invalid" column
  • Loading branch information
rmosolgo authored Mar 31, 2024
2 parents 552c117 + 68806c0 commit ec1ae00
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions guides/type_definitions/lists.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ In this example, `scores` may not return `null`. It must _always_ return a list.

Here are values the field may return:

Valid | Invalid
------|------
`[]` | `null`
`[1, 2, ...]`| `[null]`
| | `[1, null, 2, ...]`
| Valid | Invalid |
| ------ | ------ |
| `[]` | `null` |
| `[1, 2, ...]` | `[null]` |
| | `[1, null, 2, ...]` |

### Non-null lists with nullable items

Expand Down

0 comments on commit ec1ae00

Please sign in to comment.