diff --git a/guides/type_definitions/lists.md b/guides/type_definitions/lists.md index 8de791e757..c6e6519665 100644 --- a/guides/type_definitions/lists.md +++ b/guides/type_definitions/lists.md @@ -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