From 4343d961893b0ca362f50b00caf475924334b9b5 Mon Sep 17 00:00:00 2001 From: "Andrew (Andrius) Marcinkevicius" Date: Mon, 26 Jan 2015 06:36:09 +0200 Subject: [PATCH] Fix code examples | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.6 | Fixed tickets | --- components/console/helpers/debug_formatter.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/console/helpers/debug_formatter.rst b/components/console/helpers/debug_formatter.rst index 33b054bd726..885c89ab69c 100644 --- a/components/console/helpers/debug_formatter.rst +++ b/components/console/helpers/debug_formatter.rst @@ -51,8 +51,8 @@ display information that the program is started:: $output->writeln($debugFormatter->start( spl_object_hash($process), - 'Some process description') - ); + 'Some process description' + )); $process->run(); @@ -68,7 +68,7 @@ You can tweak the prefix using the third argument:: spl_object_hash($process), 'Some process description', 'STARTED' - ); + )); // will output: // STARTED Some process description