From: Stephen Dolan Date: Sat, 22 Jun 2013 11:17:28 +0000 (+0100) Subject: Fix example in manual for `floor`. See #155. X-Git-Tag: jq-1.4~91 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=54b9c9bdb225af5d886466d72f47eafc51acb4f7;p=jq Fix example in manual for `floor`. See #155. --- diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml index ea78dff..8f91e38 100644 --- a/docs/content/3.manual/manual.yml +++ b/docs/content/3.manual/manual.yml @@ -629,9 +629,9 @@ sections: The `floor` function returns the floor of its numeric input. examples: - - program: '.[] | tonumber' - input: '[1, "1"]' - output: [1, 1] + - program: 'floor' + input: '3.14159' + output: ['3'] - title: `tonumber` body: |