From 39d4316a69b8c8f2da7e5495588228f9b612fb1a Mon Sep 17 00:00:00 2001 From: FeehanG <51821376+FeehanG@users.noreply.github.com> Date: Tue, 24 Dec 2019 17:35:17 +0300 Subject: [PATCH] Update array_functions.md (#75) --- docs/en/query_language/functions/array_functions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/query_language/functions/array_functions.md b/docs/en/query_language/functions/array_functions.md index ab194deff1..f4c2908d74 100644 --- a/docs/en/query_language/functions/array_functions.md +++ b/docs/en/query_language/functions/array_functions.md @@ -794,13 +794,13 @@ Synonym for ["arrayReverse"](#array_functions-arrayreverse) ## arrayFlatten {#arrayflatten} -Converts array of arrays to a flat array. +Converts an array of arrays to a flat array. Function: -- Applies for any depth of nested arrays, but all the elements should lay at the same level. +- Applies to any depth of nested arrays, but all the elements must be on the same level. - For example, the `[[[1]], [[2], [3]]]` array can be flattened, but the `[[1], [[2], [3]]]` array can't be flattened. + For example, array `[[[1]], [[2], [3]]]` can be flattened, but array `[[1], [[2], [3]]]` can't. - Does not change arrays that are already flat. -- GitLab