From 29640b0c2c2c20ac3b1b28b1d401e9196f625e6a Mon Sep 17 00:00:00 2001 From: Antoine Lamirault Date: Sun, 18 Dec 2022 20:39:38 +0100 Subject: [PATCH] Hotfix Expression language example lower than --- components/expression_language.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/expression_language.rst b/components/expression_language.rst index 988bda75884..e86f1413022 100644 --- a/components/expression_language.rst +++ b/components/expression_language.rst @@ -41,7 +41,7 @@ way without using PHP and without introducing security problems: article.commentCount > 100 and article.category not in ["misc"] # Send an alert when - product.stock < 15 + product.stock < 15 Expressions can be seen as a very restricted PHP sandbox and are immune to external injections as you must explicitly declare which variables are available