From a32a8ff9b3b9c4894fd3f2d64653bdabed9f45f2 Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Fri, 16 Apr 2021 10:54:03 +0200 Subject: [PATCH] fix typo --- doc/usage.rst | 2 +- src/Console/Command/ListFilesCommand.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/usage.rst b/doc/usage.rst index 32118beabe4..990644c5db4 100644 --- a/doc/usage.rst +++ b/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 diff --git a/src/Console/Command/ListFilesCommand.php b/src/Console/Command/ListFilesCommand.php index 6a80e880c72..4428fe6c7bd 100644 --- a/src/Console/Command/ListFilesCommand.php +++ b/src/Console/Command/ListFilesCommand.php @@ -60,7 +60,7 @@ protected function configure() 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.') ; }