From f5a5d480efed5e980f548834010d003d0299cdc2 Mon Sep 17 00:00:00 2001 From: John Reilly Date: Mon, 21 Dec 2020 19:23:04 +0000 Subject: [PATCH] Fix missing ` in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9752d2dd93..427e96ebd8 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ Add `format` after `dotnet` and before the command arguments that you want to ru | `dotnet format --fix-style warn` | Fixes only codestyle analyzer warnings. | | `dotnet format --fix-whitespace --fix-style` | Formats and fixes codestyle analyzer errors. | | `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 -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 --check` | Formats but does not save. Returns a non-zero exit code if any files would have been changed. |