We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc86c2 commit 2f52e8cCopy full SHA for 2f52e8c
commands/docs/merge.md
@@ -33,13 +33,13 @@ usage: |
33
34
Add an 'index' column to the input table
35
```nu
36
-> [a b c] | wrap name | merge ( [1 2 3] | wrap index )
+> [a b c] | wrap name | merge ( [4 5 6] | wrap index )
37
╭───┬──────╮
38
│ # │ name │
39
├───┼──────┤
40
-│ 1 │ a │
41
-│ 2 │ b │
42
-│ 3 │ c │
+│ 4 │ a │
+│ 5 │ b │
+│ 6 │ c │
43
╰───┴──────╯
44
45
```
@@ -70,4 +70,4 @@ You may provide a column structure to merge
70
71
When merging tables, row 0 of the input table is overwritten
72
with values from row 0 of the provided table, then
73
-repeating this process with row 1, and so on.
+repeating this process with row 1, and so on.
0 commit comments