From 947e58ba4538d2fd23f0bf5c4823b625a2d75ac8 Mon Sep 17 00:00:00 2001 From: "Andrew (Andrius) Marcinkevicius" Date: Wed, 28 Jan 2015 10:25:34 +0200 Subject: [PATCH] Add missing comma in array | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.4 | Fixed tickets | --- 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 49dd43b42cd..56ec1da1173 100644 --- a/components/expression_language/syntax.rst +++ b/components/expression_language/syntax.rst @@ -259,7 +259,7 @@ For example:: $inGroup = $language->evaluate( 'user.group in ["human_resources", "marketing"]', array( - 'user' => $user + 'user' => $user, ) );