summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/lower.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/lower.md')
-rw-r--r--docs/content/en/functions/lower.md12
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/content/en/functions/lower.md b/docs/content/en/functions/lower.md
index 0e8ba6c6d..3fbfc919b 100644
--- a/docs/content/en/functions/lower.md
+++ b/docs/content/en/functions/lower.md
@@ -10,7 +10,9 @@ menu:
docs:
parent: "functions"
keywords: [strings,casing]
-signature: ["lower INPUT"]
+signature:
+ - "lower INPUT"
+ - "strings.ToLower INPUT"
workson: []
hugoversion:
relatedfuncs: []
@@ -18,6 +20,10 @@ deprecated: false
aliases: []
---
-```
-{{lower "BatMan"}} → "batman"
+
+Note that `lower` can be applied in your templates in more than one way:
+
+```go-html-template
+{{ lower "BatMan" }} → "batman"
+{{ "BatMan" | lower }} → "batman"
```