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() },