From 6cf38d3e8d34cc1f1f63bc34ba77e23f90cd06d4 Mon Sep 17 00:00:00 2001 From: "Andrew (Andrius) Marcinkevicius" Date: Mon, 26 Jan 2015 05:53:31 +0200 Subject: [PATCH] Fix typo: missing space | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.3 | Fixed tickets | --- components/console/helpers/dialoghelper.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/console/helpers/dialoghelper.rst b/components/console/helpers/dialoghelper.rst index 3ec20a601bd..9c04923f6d2 100644 --- a/components/console/helpers/dialoghelper.rst +++ b/components/console/helpers/dialoghelper.rst @@ -236,7 +236,7 @@ this set the seventh argument to ``true``:: true // enable multiselect ); - $selectedColors = array_map(function($c) use ($colors) { + $selectedColors = array_map(function ($c) use ($colors) { return $colors[$c]; }, $selected);