summaryrefslogtreecommitdiff
path: root/docs-src/content/functions/math.yml
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2019-02-21 23:15:26 -0500
committerDave Henderson <dhenderson@gmail.com>2019-02-24 21:42:35 -0500
commit242dce6e05dfe7951df3a58647c6887d549368ac (patch)
tree60f2ae067c75ade66330fcc17cb756f4e853b200 /docs-src/content/functions/math.yml
parent2bab08cea50a3130d2e6fea85589bf2d1bf173d1 (diff)
docs: YAMLifying some more function docs, improving the doc template
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'docs-src/content/functions/math.yml')
-rw-r--r--docs-src/content/functions/math.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs-src/content/functions/math.yml b/docs-src/content/functions/math.yml
index da9033a8..385b53d0 100644
--- a/docs-src/content/functions/math.yml
+++ b/docs-src/content/functions/math.yml
@@ -55,7 +55,7 @@ funcs:
arguments:
- name: num
required: true
- description: The input number. Will be converted to a `float64`, or `0` if not convertable
+ description: The input number. Will be converted to a `float64`, or `0` if not convertible
examples:
- |
$ gomplate -i '{{ range (slice 5.1 42 "3.14" "0xFF" "NaN" "Inf" "-0") }}ceil {{ printf "%#v" . }} = {{ math.Ceil . }}{{"\n"}}{{ end }}'