summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorjulianorchard <julianorchard@protonmail.com>2024-11-17 17:41:34 +0000
committerGitHub <noreply@github.com>2024-11-17 12:41:34 -0500
commitd512164c7f192ed21251d700918d98fe7d6c76a0 (patch)
tree5d00328ecc825c93616fe0cfc3a4adacf2a842df /docs
parent1da91051d43152c23e4df62f2082e44300986fdc (diff)
docs(fix): Quotation in external templates example (#2263)
Signed-off-by: Julian Orchard <hello@julianorchard.co.uk>
Diffstat (limited to 'docs')
-rw-r--r--docs/content/syntax.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/syntax.md b/docs/content/syntax.md
index e4c9b8f9..98eeaef2 100644
--- a/docs/content/syntax.md
+++ b/docs/content/syntax.md
@@ -325,7 +325,7 @@ Hello {{ . }}!
```
```
-$ gomplate -t hello=hello.t -i '{{ template "hello" "World" }} {{ template "hello" .Env.USER }}"
+$ gomplate -t hello=hello.t -i '{{ template "hello" "World" }} {{ template "hello" .Env.USER }}'
Hello World! Hello hairyhenderson!
```