Skip to content

Commit 065dba9

Browse files
authored
fix multiple issues with example table (#1678)
- backtick instead of single quote - "summy" instead of "sunny" - trailing comma at end of last row
1 parent 9993b36 commit 065dba9

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

book/navigating_structured_data.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,13 @@ Daphne
7878
The next few examples will use the following table:
7979

8080
```nu
81-
let data = [[date temps condition ];
82-
[2022-02-01T14:30:00+05:00, [ 38.24, 38.50, 37.99, 37.98, 39.10 ], 'summy` ],
83-
[2022-02-02T14:30:00+05:00, [ 35.24, 35.94, 34.91, 35.24, 36.65 ], 'sunny' ],
84-
[2022-02-03T14:30:00+05:00, [ 35.17, 36.67, 34.42, 35.76, 36.52 ], 'cloudy' ],
85-
[2022-02-04T14:30:00+05:00, [ 39.24, 40.94, 39.21, 38.99, 38.80 ], 'rain' ],
86-
]
81+
let data = [
82+
[date temps condition ];
83+
[2022-02-01T14:30:00+05:00, [38.24, 38.50, 37.99, 37.98, 39.10], 'sunny' ],
84+
[2022-02-02T14:30:00+05:00, [35.24, 35.94, 34.91, 35.24, 36.65], 'sunny' ],
85+
[2022-02-03T14:30:00+05:00, [35.17, 36.67, 34.42, 35.76, 36.52], 'cloudy' ],
86+
[2022-02-04T14:30:00+05:00, [39.24, 40.94, 39.21, 38.99, 38.80], 'rain' ]
87+
]
8788
```
8889

8990
::: details Expand for a visual representation of this data

0 commit comments

Comments
 (0)