Markus Staab 3 years ago
parent
commit
a32a8ff9b3
2 changed files with 2 additions and 2 deletions
  1. 1 1
      doc/usage.rst
  2. 1 1
      src/Console/Command/ListFilesCommand.php

+ 1 - 1
doc/usage.rst

@@ -143,7 +143,7 @@ The output is build in a form that its easy to use in combination with ``xargs``
 This can be useful e.g. in situations where the caching might mechanism not available (CI, Docker) and distributing
 fixing across several processes might speedup the process.
 
-Note: You need to pass the config to the ``fix`` command, in order to make it work with several files beeing passed by ``list-files``.
+Note: You need to pass the config to the ``fix`` command, in order to make it work with several files being passed by ``list-files``.
 
 .. code-block:: console
 

+ 1 - 1
src/Console/Command/ListFilesCommand.php

@@ -60,7 +60,7 @@ final class ListFilesCommand extends Command
                     new InputOption('config', '', InputOption::VALUE_REQUIRED, 'The path to a .php-cs-fixer.php file.'),
                 ]
             )
-            ->setDescription('List all files beeing fixed by the given config.')
+            ->setDescription('List all files being fixed by the given config.')
         ;
     }