Skip to content

Commit ab9f63f

Browse files
committed
Fix style
1 parent cf9da7e commit ab9f63f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/en/sql-reference/statements/empty.md

Whitespace-only changes.

src/Functions/array/arrayUniq.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -344,15 +344,15 @@ If you want to get a list of unique items in an array, you can use `arrayReduce(
344344
"Additional same-size arrays used to count the number of unique tuples of elements at corresponding positions in multiple arrays. [`Array`](/sql-reference/data-types/array)."
345345
}
346346
};
347-
FunctionDocumentation::ReturnedValue returned_value = R"(
347+
FunctionDocumentation::Examples examples =
348+
{{"Single argument", "SELECT arrayUniq([1,1,2,2])", "2"},
349+
{"Multiple argument", "SELECT arrayUniq([1,2,3], [4,5,6])", "3"}};
350+
FunctionDocumentation::ReturnedValue returned_value = R"(
348351
For a single argument returns the number of unique
349352
elements. For multiple arguments returns the number of unique tuples made from
350353
elements at corresponding positions across the arrays.
351354
[`UInt32`](/sql-reference/data-types/int-uint).
352355
)";
353-
FunctionDocumentation::Examples examples =
354-
{{"Single argument", "SELECT arrayUniq([1,1,2,2])", "2"},
355-
{"Multiple argument", "SELECT arrayUniq([1,2,3], [4,5,6])", "3"}};
356356
FunctionDocumentation::IntroducedIn introduced_in = {1, 1};
357357
FunctionDocumentation::Category category = FunctionDocumentation::Category::Array;
358358
FunctionDocumentation documentation = {description, syntax, arguments, returned_value, examples, introduced_in, category};

0 commit comments

Comments
 (0)