diff options
author | Michael Raskin <7c6f434c@mail.ru> | 2018-06-10T12·20+0200 |
---|---|---|
committer | Michael Raskin <7c6f434c@mail.ru> | 2018-06-10T12·20+0200 |
commit | 17bc7579809e2afa3870ac1d85f7027d3681f506 (patch) | |
tree | e6e5d573c47e2c251cbdc05e1dfbd558c290f0ea /doc/manual | |
parent | 74144ae845a99d130ab6b5f110c17847c1539a93 (diff) |
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
Diffstat (limited to 'doc/manual')
-rw-r--r-- | doc/manual/expressions/builtins.xml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/manual/expressions/builtins.xml b/doc/manual/expressions/builtins.xml index c7a7b49be9f7..07d8357b40b5 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}'' </programlisting> returns the value <literal>{ x = [ 1 2 3 ]; y = null; - }</literal>. Floating point numbers are not - supported.</para></listitem> + }</literal>.</para></listitem> </varlistentry> |