diff --git a/content/en/functions/math/Add.md b/content/en/functions/math/Add.md index 4e05f7170..a438a3d53 100644 --- a/content/en/functions/math/Add.md +++ b/content/en/functions/math/Add.md @@ -26,10 +26,5 @@ If one of the numbers is a [`float`], the result is a `float`. You can also use the `add` function to concatenate strings. ```go-html-template -{{ $s := slice "h" "u" "g" "o" }} -{{ $t := "" }} -{{ range $s }} - {{ $t = add $t . }} -{{ end }} -{{ $t }} → hugo +{{ add "hu" "go" }} → hugo ```