diff options
Diffstat (limited to 'docs/content/en/functions/scratch.md')
-rw-r--r-- | docs/content/en/functions/scratch.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/en/functions/scratch.md b/docs/content/en/functions/scratch.md index 2e00f41bd..16e502b84 100644 --- a/docs/content/en/functions/scratch.md +++ b/docs/content/en/functions/scratch.md @@ -72,7 +72,7 @@ Get the value of a given key. Add a given value to existing value(s) of the given key. -For single values, `Add` accepts values that support Go's `+` operator. If the first `Add` for a key is an array or slice, the following adds will be appended to that list. +For single values, `Add` accepts values that support Go's `+` operator. If the first `Add` for a key is an array or slice, the following adds will be [appended](/functions/append/) to that list. ```go-html-template {{ $scratch.Add "greetings" "Hello" }} |