Skip to content

Commit ec1ae00

Browse files
authored
Merge pull request #4894 from Austin-X/patch-2
Fix alignment of a value in the "Invalid" column
2 parents 552c117 + 68806c0 commit ec1ae00

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

guides/type_definitions/lists.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ In this example, `scores` may not return `null`. It must _always_ return a list.
106106

107107
Here are values the field may return:
108108

109-
Valid | Invalid
110-
------|------
111-
`[]` | `null`
112-
`[1, 2, ...]`| `[null]`
113-
| | `[1, null, 2, ...]`
109+
| Valid | Invalid |
110+
| ------ | ------ |
111+
| `[]` | `null` |
112+
| `[1, 2, ...]` | `[null]` |
113+
| | `[1, null, 2, ...]` |
114114

115115
### Non-null lists with nullable items
116116

0 commit comments

Comments
 (0)