From b9ae8e450a4320fe106f48e6c7feac1a5b83af96 Mon Sep 17 00:00:00 2001 From: Clement Ridoret Date: Tue, 3 Sep 2013 11:00:44 -0400 Subject: [PATCH] fix typo in code example --- 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 eb819d2d96e..1d1215236f1 100644 --- a/components/console/helpers/dialoghelper.rst +++ b/components/console/helpers/dialoghelper.rst @@ -231,7 +231,7 @@ this set the seventh argument to ``true``:: $selectedColors = array_map(function($c) use ($colors) { return $colors[$c]; - }, $selected) + }, $selected); $output->writeln('You have just selected: ' . implode(', ', $selectedColors));