tpl: Add time note to default func description
authorCameron Moore <moorereason@gmail.com>
Wed, 9 Mar 2016 22:46:16 +0000 (16:46 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 10 Mar 2016 16:47:59 +0000 (17:47 +0100)
docs/content/templates/functions.md
tpl/template_funcs.go

index 912bb3cded5e2eec7832b1cb9c11e401ca8364be..599e61bda6a9de113faf38ec6cb118ec1c7e401f 100644 (file)
@@ -30,9 +30,9 @@ and other basic tools; these are listed in the
 
 ### 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.
 
index 4df811a1cd76c9a93cb1c26b0816f1abecedf590..3e87ab0587319352fc05c38fc5d9f32eba6711df 100644 (file)
@@ -1241,8 +1241,8 @@ func dateFormat(layout string, v interface{}) (string, error) {
 
 // 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" }}