diff options
Diffstat (limited to 'tpl/internal/go_templates/htmltemplate/content.go')
-rw-r--r-- | tpl/internal/go_templates/htmltemplate/content.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tpl/internal/go_templates/htmltemplate/content.go b/tpl/internal/go_templates/htmltemplate/content.go index 898084876..9c61cfac0 100644 --- a/tpl/internal/go_templates/htmltemplate/content.go +++ b/tpl/internal/go_templates/htmltemplate/content.go @@ -29,7 +29,8 @@ const ( // indirect returns the value, after dereferencing as many times // as necessary to reach the base type (or nil). -func indirect(a any) any { +// Signature modified by Hugo. TODO(bep) script this. +func doIndirect(a any) any { if a == nil { return nil } |