Fix a typo in templates docs

This commit is contained in:
Matt Harding 2024-04-06 03:07:34 +01:00 committed by GitHub
parent 09ff1f27c4
commit c9551d4337
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -179,15 +179,15 @@ Within a template action you may [pipe] a value to function or method. The piped
You can pipe the result of one function or method into another. For example, these are equivalent:
```go-html-template
{{ strings.TrimSuffix "o" (strings.ToLower "Hugo") }} → Hug
{{ "Hugo" | strings.ToLower | strings.TrimSuffix "o" }} → Hug
{{ strings.TrimSuffix "o" (strings.ToLower "Hugo") }} → hug
{{ "Hugo" | strings.ToLower | strings.TrimSuffix "o" }} → hug
```
These are also equivalent:
```go-html-template
{{ mul 6 (add 2 5) }} → 42
{{ 2 | add 5 | mul 6 }} → 42
{{ 5 | add 2 | mul 6 }} → 42
```
{{% note %}}