From a3e41f4f6c28c3326ef556fc7244343c927cfc4a Mon Sep 17 00:00:00 2001 From: Matthieu Moquet Date: Fri, 14 Dec 2012 14:08:54 +0100 Subject: [PATCH] [Console] Fix a typo in a method name @see https://github.com/symfony/symfony/blob/master/src/Symfony/Component/Console/Helper/ProgressHelper.php#L142 --- components/console/introduction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/console/introduction.rst b/components/console/introduction.rst index 9d52276414e..997d14c1172 100755 --- a/components/console/introduction.rst +++ b/components/console/introduction.rst @@ -416,7 +416,7 @@ progress bar:: $progress->setBarCharacter('='); // the unfinished part of the bar $progress->setEmptyBarCharacter(' '); - $progress->setProgressChar('|'); + $progress->setProgressCharacter('|'); $progress->setBarWidth(50); To see other available options, check the API documentation for