Browse Source

Merge pull request #1301 from igorw/dump-autoload-description-ucfirst

Uppercase first character of dump-autoload description
Jordi Boggiano 12 years ago
parent
commit
e7086576ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Composer/Command/DumpAutoloadCommand.php

+ 1 - 1
src/Composer/Command/DumpAutoloadCommand.php

@@ -28,7 +28,7 @@ class DumpAutoloadCommand extends Command
         $this
             ->setName('dump-autoload')
             ->setAliases(array('dumpautoload'))
-            ->setDescription('dumps the autoloader')
+            ->setDescription('Dumps the autoloader')
             ->setDefinition(array(
                 new InputOption('optimize', 'o', InputOption::VALUE_NONE, 'Optimizes PSR0 packages to be loaded with classmaps too, good for production.'),
             ))