From 47777fecbfc786b66c1c915791656e8989cd395d Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sat, 30 May 2015 08:01:46 +0200 Subject: [PATCH] [Cookbook][Console] fix a small typ --- cookbook/console/command_in_controller.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/console/command_in_controller.rst b/cookbook/console/command_in_controller.rst index 36a7d1e79a9..62de74072be 100644 --- a/cookbook/console/command_in_controller.rst +++ b/cookbook/console/command_in_controller.rst @@ -45,7 +45,7 @@ Run this command from inside your controller via:: 'command' => 'swiftmailer:spool:send', '--message-limit' => $messages, )); - // our use NullOutput() if you don't need the outpu + // our use NullOutput() if you don't need the output $output = new BufferedOutput(); $application->run($input, $output);