diff --git a/README.md b/README.md index 7880fecd16..8f86783fa1 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ Add `format` after `dotnet` and before the command arguments that you want to ru | `dotnet format --fix-analyzers` | Fixes only 3rd party analyzer errors. | | `dotnet format -wsa` | Formats, fixes codestyle errors, and fixes 3rd party analyzer errors. | | `dotnet format -v diag` | Formats with very verbose logging. | -| `dotnet format --include Programs.cs Utility\Logging.cs` | Formats the files Program.cs and Utility\Logging.cs | +| `dotnet format --include Program.cs Utility\Logging.cs` | Formats the files Program.cs and Utility\Logging.cs | | `dotnet format --check` | Formats but does not save. Returns a non-zero exit code if any files would have been changed. | | `dotnet format --report ` | Formats and saves a json report file to the given directory. | | `dotnet format --include test/Utilities/*.cs --folder` | Formats the files expanded from native shell globbing (e.g. bash). Space-separated list of files are fed to formatter in this case. Also applies to `--exclude` option. |