From 54b9c9bdb225af5d886466d72f47eafc51acb4f7 Mon Sep 17 00:00:00 2001 From: Stephen Dolan Date: Sat, 22 Jun 2013 12:17:28 +0100 Subject: [PATCH] Fix example in manual for `floor`. See #155. --- docs/content/3.manual/manual.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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: | -- 2.40.0