From 17bc7579809e2afa3870ac1d85f7027d3681f506 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 --- 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 c7a7b49b..07d8357b 100644 --- a/doc/manual/expressions/builtins.xml +++ b/doc/manual/expressions/builtins.xml @@ -509,8 +509,7 @@ builtins.fromJSON ''{"x": [1, 2, 3], "y": null}'' returns the value { x = [ 1 2 3 ]; y = null; - }. Floating point numbers are not - supported. + }.