aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/content/en/templates/introduction.md
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <[email protected]>2024-11-13 11:07:57 +0100
committerBjørn Erik Pedersen <[email protected]>2024-11-13 11:07:57 +0100
commit3477d9fcec39d17f99cbc891e337658e8660f5db (patch)
tree4b315ea0ec6c804b40815e2a49911c4ef96681fd /docs/content/en/templates/introduction.md
parente79ee0d5167707d891c80906e71daa098c9e46af (diff)
parentde0df119b504a91c9e1f442b07954f366ffb2932 (diff)
downloadhugo-3477d9fcec39d17f99cbc891e337658e8660f5db.tar.gz
hugo-3477d9fcec39d17f99cbc891e337658e8660f5db.zip
Merge commit 'de0df119b504a91c9e1f442b07954f366ffb2932'
Diffstat (limited to 'docs/content/en/templates/introduction.md')
-rw-r--r--docs/content/en/templates/introduction.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/en/templates/introduction.md b/docs/content/en/templates/introduction.md
index 0a3ff2b0f..e5650149a 100644
--- a/docs/content/en/templates/introduction.md
+++ b/docs/content/en/templates/introduction.md
@@ -199,11 +199,11 @@ Remember that the piped value becomes the final argument to the function or meth
You can split a template action over two or more lines. For example, these are equivalent:
```go-html-template
-{{ $v := or .Site.Language.LanguageName .Site.Language.Lang }}
+{{ $v := or $arg1 $arg2 }}
{{ $v := or
- .Site.Language.LanguageName
- .Site.Language.Lang
+ $arg1
+ $arg2
}}
```