Skip to content

Commit 2f52e8c

Browse files
authored
Update merge.md
Update the example to make it clearer
1 parent afc86c2 commit 2f52e8c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

commands/docs/merge.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ usage: |
3333

3434
Add an 'index' column to the input table
3535
```nu
36-
> [a b c] | wrap name | merge ( [1 2 3] | wrap index )
36+
> [a b c] | wrap name | merge ( [4 5 6] | wrap index )
3737
╭───┬──────╮
3838
│ # │ name │
3939
├───┼──────┤
40-
1 │ a │
41-
2 │ b │
42-
3 │ c │
40+
4 │ a │
41+
5 │ b │
42+
6 │ c │
4343
╰───┴──────╯
4444
4545
```
@@ -70,4 +70,4 @@ You may provide a column structure to merge
7070

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

0 commit comments

Comments
 (0)