ref: f3f9763afd7955780b803de511a2a1eca7c8c8ae
parent: 09c8c17bf06ed5f215922b0755558e58a8723802
author: Cameron Moore <[email protected]>
date: Wed Mar 9 11:46:16 EST 2016
tpl: Add time note to default func description
--- a/docs/content/templates/functions.md
+++ b/docs/content/templates/functions.md
@@ -30,9 +30,9 @@
### default
Checks whether a given value is set and returns a default value if it is not.
-"Set" in this context means true for booleans; non-zero for numeric types;
-non-zero length for strings, arrays, slices, and maps; any struct value; or
-non-nil for any other types.
+"Set" in this context means true for booleans; non-zero for numeric types and
+times; non-zero length for strings, arrays, slices, and maps; any struct value;
+or non-nil for any other types.
e.g.
--- a/tpl/template_funcs.go
+++ b/tpl/template_funcs.go
@@ -1241,8 +1241,8 @@
// dfault checks whether a given value is set and returns a default value if it
// is not. "Set" in this context means true for booleans; non-zero for numeric
-// types; non-zero length for strings, arrays, slices, and maps; any struct
-// value; or non-nil for any other types.
+// types and times; non-zero length for strings, arrays, slices, and maps; any
+// struct value; or non-nil for any other types.
func dfault(dflt interface{}, given ...interface{}) (interface{}, error) {
// given is variadic because the following construct will not pass a piped
// argument when the key is missing: {{ index . "key" | default "foo" }}