Update IncludeCached - improve return statement example

This commit is contained in:
Joe Mooring
2024-01-20 16:38:24 -08:00
committed by GitHub
parent b053fa09c3
commit 0371510730
@@ -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 }}