diff --git a/src/content/doc-surrealql/functions/database/array.mdx b/src/content/doc-surrealql/functions/database/array.mdx index 02959cd91..c3401ce7c 100644 --- a/src/content/doc-surrealql/functions/database/array.mdx +++ b/src/content/doc-surrealql/functions/database/array.mdx @@ -401,7 +401,7 @@ The following example shows this function, and its output, when used in a [`RETU ```surql RETURN array::boolean_and(["true", "false", 1, 1], ["true", "true", 0, "true"]); -[true, false, false, true] +[true, true, false, true] ``` For those that take two arrays, missing elements (if one array is shorter than the other) are considered `null` and thus false.