From dab07dcb0e88eb2dfe073ff92f2a59c691e8bcbf Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Sat, 26 Aug 2023 06:58:01 -0700 Subject: [PATCH] Fix typo --- content/en/functions/append.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/functions/append.md b/content/en/functions/append.md index ea3bde5257..e734eac2b8 100644 --- a/content/en/functions/append.md +++ b/content/en/functions/append.md @@ -83,7 +83,7 @@ To create a slice of slices, starting with an empty slice: -Although the elements in the examples above are strings, you can use the `append` function with any data type, include Pages. For example, on the home page of a corporate site, to display links to the two most recent press releases followed by links to the four most recent articles: +Although the elements in the examples above are strings, you can use the `append` function with any data type, including Pages. For example, on the home page of a corporate site, to display links to the two most recent press releases followed by links to the four most recent articles: ```go-html-template {{ $p := where site.RegularPages "Type" "press-releases" | first 2 }}