From 59032b00bb252c6d8cc43cbc490e0492423f61b1 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 2 Aug 2021 12:29:55 -0700 Subject: [PATCH] Fixed incorrect example in documentation --- docs/cli.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cli.rst b/docs/cli.rst index 72c8bbf..32405c6 100644 --- a/docs/cli.rst +++ b/docs/cli.rst @@ -970,7 +970,7 @@ Various built-in recipe functions are available for common operations. These are The ``delimiter`` parameter can be used to specify a different delimiter. - The ``type`` parameter can be set to ``float`` or ``int`` to produce a JSON array of different types, for example if the column's string value was ``1.2,3,4`` the following:: + The ``type`` parameter can be set to ``float`` or ``int`` to produce a JSON array of different types, for example if the column's string value was ``1.2,3,4.5`` the following:: r.jsonsplit(value, type=float)