From 192d14df5bed98e14e56fcbb6e7503cf8c30d762 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Fri, 5 Jan 2024 09:02:28 -0800 Subject: [PATCH] Fix typo --- content/en/functions/collections/Append.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/functions/collections/Append.md b/content/en/functions/collections/Append.md index bbacbc6da..cb29dc2f2 100644 --- a/content/en/functions/collections/Append.md +++ b/content/en/functions/collections/Append.md @@ -81,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]] ```