summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2024-09-30 10:32:33 -0400
committerGitHub <noreply@github.com>2024-09-30 14:32:33 +0000
commit69d3e0c46e34a57e6cfcb58d36b28c6f0beb134e (patch)
tree23c1918d661ef7c79e4c58394c3f3468795aab82 /docs
parent8f40d1fffd456266a1ac563df8fde5589e52d8de (diff)
fix(lint): Fix or ignore lint errors (#2228)
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/content/functions/conv.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/content/functions/conv.md b/docs/content/functions/conv.md
index ae3370eb..21941477 100644
--- a/docs/content/functions/conv.md
+++ b/docs/content/functions/conv.md
@@ -452,8 +452,7 @@ $ gomplate -i '{{ conv.ToBools false "blah" 0 }}'
Converts the input to an `int64` (64-bit signed integer).
This function attempts to convert most types of input (strings, numbers,
-and booleans), but behaviour when the input can not be converted is
-undefined and subject to change.
+and booleans).
Unconvertable inputs will result in errors.
@@ -592,8 +591,7 @@ gomplate -i '{{ conv.ToInts true 0x42 "123,456.99" "1.2345e+3"}}'
Converts the input to a `float64`.
This function attempts to convert most types of input (strings, numbers,
-and booleans), but behaviour when the input can not be converted is
-undefined and subject to change.
+and booleans).
Unconvertable inputs will result in errors.