From 380c216d774aa240ac2744212ed06f8066890c5b Mon Sep 17 00:00:00 2001 From: Bram Geron Date: Fri, 2 Dec 2022 17:35:28 +0100 Subject: [PATCH] Fix documentation for merge (#7329) # Description `merge` no longer accepts blocks as arguments. --- crates/nu-command/src/filters/merge.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu-command/src/filters/merge.rs b/crates/nu-command/src/filters/merge.rs index 7b5273659e..53cc2497e3 100644 --- a/crates/nu-command/src/filters/merge.rs +++ b/crates/nu-command/src/filters/merge.rs @@ -33,10 +33,10 @@ repeating this process with row 1, and so on."# (Type::Table(vec![]), Type::Table(vec![])), ]) .required( - "block", + "value", // Both this and `update` should have a shape more like | than just . -Leon 2022-10-27 SyntaxShape::Any, - "the new value to merge with, or a block that produces it", + "the new value to merge with", ) .category(Category::Filters) }