From 2e6a48fbcfe90ace79a4f41ccb60e31bc4da9fca Mon Sep 17 00:00:00 2001 From: Lirikl Date: Sat, 13 May 2023 01:05:43 +0300 Subject: [PATCH] fix documentation --- src/Functions/array/arrayFold.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Functions/array/arrayFold.cpp b/src/Functions/array/arrayFold.cpp index 9786d5b2e5b..ee122d64149 100644 --- a/src/Functions/array/arrayFold.cpp +++ b/src/Functions/array/arrayFold.cpp @@ -220,6 +220,6 @@ REGISTER_FUNCTION(ArrayFold) factory.registerFunction(FunctionDocumentation{.description=R"( Function arrayFold(x1,...,xn,accum -> expression, array1,...,arrayn, init_accum) applies lambda function to a number of same sized array columns and collects result in accumulator. Accumulator can be either constant or column. - )", .categories{"Array"}, .examples{{"sum", "SELECT arrayFold(x,acc -> acc + x, [1,2,3,4], toInt64(1));", "11"}}}); + )", .examples{{"sum", "SELECT arrayFold(x,acc -> acc + x, [1,2,3,4], toInt64(1));", "11"}}, .categories{"Array"}}); } }