From dbcde5f2e8fe59955f77a21c14059281273e03f1 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sun, 10 Jun 2018 14:20:18 +0200 Subject: [PATCH] manual: builtins.fromJSON: remove the claim that floats are not allowed floating-point numbers are supported now, including the fromJSON builtin. Reported on IRC by inquisitiv3 (cherry picked from commit 17bc7579809e2afa3870ac1d85f7027d3681f506) --- doc/manual/expressions/builtins.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/manual/expressions/builtins.xml b/doc/manual/expressions/builtins.xml index acc2dac1b..005f0713c 100644 --- a/doc/manual/expressions/builtins.xml +++ b/doc/manual/expressions/builtins.xml @@ -479,8 +479,7 @@ builtins.fromJSON ''{"x": [1, 2, 3], "y": null}'' returns the value { x = [ 1 2 3 ]; y = null; - }. Floating point numbers are not - supported. + }.