From 4f3588ccf48826eebbcefd0ba0625eabcecba258 Mon Sep 17 00:00:00 2001 From: Bob D'Ercole Date: Tue, 6 Feb 2018 13:57:08 -0500 Subject: [PATCH] Fixed Class Name Typo --- console/lazy_commands.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/lazy_commands.rst b/console/lazy_commands.rst index 844bdcd0a1b..b05e17009e0 100644 --- a/console/lazy_commands.rst +++ b/console/lazy_commands.rst @@ -18,7 +18,7 @@ which will be responsible for returning ``Command`` instances:: use AppBundle\Command\HeavyCommand; use Symfony\Component\Console\Application; - use Symfony\Component\Console\CommandLoader\FactoryCommmandLoader; + use Symfony\Component\Console\CommandLoader\FactoryCommandLoader; $commandLoader = new FactoryCommandLoader(array( 'app:heavy' => function () { return new HeavyCommand() },