Skip to content

Commit 989affb

Browse files
Fix typo in $append
1 parent 33b1a89 commit 989affb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/versioned_docs/version-1.7.0/array-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ __Examples__
1818
## `$append()`
1919
__Signature:__ `$append(array1, array2)`
2020

21-
Returns and array containing the values in `array1` followed by the values in `array2`. If either parameter is not an array, then it is treated as a singleton array containing that value.
21+
Returns an array containing the values in `array1` followed by the values in `array2`. If either parameter is not an array, then it is treated as a singleton array containing that value.
2222

2323
__Examples__
2424
- `$append([1,2,3], [4,5,6])` => `[1,2,3,4,5,6]`

0 commit comments

Comments
 (0)