diff --git a/crates/nu-command/src/filters/merge.rs b/crates/nu-command/src/filters/merge.rs index fa8ec9d337..e1d3095b20 100644 --- a/crates/nu-command/src/filters/merge.rs +++ b/crates/nu-command/src/filters/merge.rs @@ -38,21 +38,21 @@ repeating this process with row 1, and so on."# fn examples(&self) -> Vec { vec![ Example { - example: "[a b c] | wrap name | merge ( [1 2 3] | wrap index )", - description: "Add an 'index' column to the input table", + example: "[a b c] | wrap name | merge ( [47 512 618] | wrap id )", + description: "Add an 'id' column to the input table", result: Some(Value::list( vec![ Value::test_record(record! { "name" => Value::test_string("a"), - "index" => Value::test_int(1), + "id" => Value::test_int(47), }), Value::test_record(record! { "name" => Value::test_string("b"), - "index" => Value::test_int(2), + "id" => Value::test_int(512), }), Value::test_record(record! { "name" => Value::test_string("c"), - "index" => Value::test_int(3), + "id" => Value::test_int(618), }), ], Span::test_data(),