summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/collections/Append.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/collections/Append.md')
-rw-r--r--docs/content/en/functions/collections/Append.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/content/en/functions/collections/Append.md b/docs/content/en/functions/collections/Append.md
index 5632dccfb..cb29dc2f2 100644
--- a/docs/content/en/functions/collections/Append.md
+++ b/docs/content/en/functions/collections/Append.md
@@ -7,7 +7,6 @@ action:
aliases: [append]
related:
- functions/collections/Merge
- - functions/collections/Slice
returnType: any
signatures:
- collections.Append ELEMENT [ELEMENT...] COLLECTION
@@ -82,7 +81,7 @@ To create a slice of slices, starting with an empty slice:
{{ $s = $s | append (slice (slice "a" "b")) }}
{{ $s }} → [[a b]]
-{{ $s = $s | append (slice "c" "d") }}
+{{ $s = $s | append (slice "c" "d") }}
{{ $s }} → [[a b] [c d]]
```