From e260ab47d5121a4bfb19d8e4c68c59ce48880c93 Mon Sep 17 00:00:00 2001 From: epixian <38962121+epixian@users.noreply.github.com> Date: Thu, 24 Feb 2022 10:15:47 -0500 Subject: [PATCH] Update syntax.rst Added other number examples related to 44073 --- components/expression_language/syntax.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/expression_language/syntax.rst b/components/expression_language/syntax.rst index a4c17f81a27..84d3d919ade 100644 --- a/components/expression_language/syntax.rst +++ b/components/expression_language/syntax.rst @@ -14,7 +14,7 @@ Supported Literals The component supports: * **strings** - single and double quotes (e.g. ``'hello'``) -* **numbers** - e.g. ``103`` +* **numbers** - e.g. ``103``, ``0.787``, ``.1234``, ``188_165.1_178``, ``-.7_189e+10``` * **arrays** - using JSON-like notation (e.g. ``[1, 2]``) * **hashes** - using JSON-like notation (e.g. ``{ foo: 'bar' }``) * **booleans** - ``true`` and ``false``