diff options
Diffstat (limited to 'docs/content/en/functions/partials/IncludeCached.md')
-rw-r--r-- | docs/content/en/functions/partials/IncludeCached.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/en/functions/partials/IncludeCached.md b/docs/content/en/functions/partials/IncludeCached.md index db275fa9e..66ef4a6ac 100644 --- a/docs/content/en/functions/partials/IncludeCached.md +++ b/docs/content/en/functions/partials/IncludeCached.md @@ -51,7 +51,7 @@ The variant arguments are not available to the underlying partial template; they To return a value from a partial template, it must contain only one `return` statement, placed at the end of the template: ```go-html-template -{{ $result := false }} +{{ $result := "" }} {{ if math.ModBool . 2 }} {{ $result = "even" }} {{ else }} |