Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions commands/docs/merge.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ usage: |

Add an 'index' column to the input table
```nu
> [a b c] | wrap name | merge ( [1 2 3] | wrap index )
> [a b c] | wrap name | merge ( [4 5 6] | wrap index )
╭───┬──────╮
│ # │ name │
├───┼──────┤
1 │ a │
2 │ b │
3 │ c │
4 │ a │
5 │ b │
6 │ c │
╰───┴──────╯

```
Expand Down Expand Up @@ -70,4 +70,4 @@ You may provide a column structure to merge

When merging tables, row 0 of the input table is overwritten
with values from row 0 of the provided table, then
repeating this process with row 1, and so on.
repeating this process with row 1, and so on.
Loading