Skip to content

Commit

Permalink
fix variable name (#1107)
Browse files Browse the repository at this point in the history
variable was named `second`, but should be named `third` to match the example
  • Loading branch information
joergsch committed Oct 10, 2023
1 parent 904b371 commit c1e5fda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/working_with_tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ If the column names are not identical then additionally columns and values will
```nu
let first = [[a b]; [1 2]]
let second = [[a b]; [3 4]]
let second = [[a c]; [3 4]]
let third = [[a c]; [3 4]]
$first | append $second | append $third
───┬───┬────┬────
# │ a │ b │ c
Expand Down

0 comments on commit c1e5fda

Please sign in to comment.