Fix documentation for merge (#7329)

# Description

`merge` no longer accepts blocks as arguments.
This commit is contained in:
Bram Geron 2022-12-02 17:35:28 +01:00 committed by GitHub
parent ee5a387300
commit 380c216d77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,10 +33,10 @@ repeating this process with row 1, and so on."#
(Type::Table(vec![]), Type::Table(vec![])), (Type::Table(vec![]), Type::Table(vec![])),
]) ])
.required( .required(
"block", "value",
// Both this and `update` should have a shape more like <record> | <table> than just <any>. -Leon 2022-10-27 // Both this and `update` should have a shape more like <record> | <table> than just <any>. -Leon 2022-10-27
SyntaxShape::Any, SyntaxShape::Any,
"the new value to merge with, or a block that produces it", "the new value to merge with",
) )
.category(Category::Filters) .category(Category::Filters)
} }