Skip to content

Commit bbeda6f

Browse files
committed
Fix codespell
1 parent 773681c commit bbeda6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Functions/array/arrayConcat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ REGISTER_FUNCTION(ArrayConcat)
8383
FunctionDocumentation::Description description = "Combines arrays passed as arguments.";
8484
FunctionDocumentation::Syntax syntax = "arrayConcat(arr1 [, arr2, ... , arrN])";
8585
FunctionDocumentation::Arguments arguments = {
86-
{"arr1 [, arr2, ... , arrN]", "N number of arrays to concatinate. [`Array(T)`](/sql-reference/data-types/array)."}
86+
{"arr1 [, arr2, ... , arrN]", "N number of arrays to concatenate. [`Array(T)`](/sql-reference/data-types/array)."}
8787
};
8888
FunctionDocumentation::ReturnedValue returned_value = "Returns a single combined array from the provided array arguments.";
8989
FunctionDocumentation::Examples example = {{"Usage example", "SELECT arrayConcat([1, 2], [3, 4], [5, 6]) AS res", "[1,2,3,4,5,6]"}};

0 commit comments

Comments
 (0)