summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKrishna Tippur <122297112+krishnatippur@users.noreply.github.com>2024-06-15 05:57:31 -0700
committerGitHub <noreply@github.com>2024-06-15 08:57:31 -0400
commit9e6f92736c3d4b5a95d504638a4b844938cf528d (patch)
tree65290a006720f10cd3b48f9c99c2260abe09595d /docs
parent325e4a89bc865ff327225b3421d12eb6536e4539 (diff)
Fix broken example for Strings.Trim (#2107)
Diffstat (limited to 'docs')
-rw-r--r--docs/content/functions/strings.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/functions/strings.md b/docs/content/functions/strings.md
index 5e43ac1e..9317d95d 100644
--- a/docs/content/functions/strings.md
+++ b/docs/content/functions/strings.md
@@ -665,7 +665,7 @@ input | strings.Trim cutset
### Examples
```console
-$ gomplate -i '{{ "_-foo-_" | strings.Trim "_-" }}
+$ gomplate -i '{{ "_-foo-_" | strings.Trim "_-" }}'
foo
```