From 7ac12c1a8737d92108b7a7c7efb39139e038d69c Mon Sep 17 00:00:00 2001 From: Adeel <3840695+am11@users.noreply.github.com> Date: Mon, 9 Nov 2020 20:29:49 +0200 Subject: [PATCH] Fix markdown formatting in example table --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9c76948536..9752d2dd93 100644 --- a/README.md +++ b/README.md @@ -128,12 +128,9 @@ Add `format` after `dotnet` and before the command arguments that you want to ru | `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. | | `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. | -| `dotnet format --include 'test/Utilities/*.cs' --folder` | With single quotes, formats the files expanded from built-in glob expansion. A single file | -| | pattern is fed to formatter, which gets expanded internally. Also applies to `--exclude` option. | -| `ls tests/Utilities/*.cs \| dotnet format --include - --folder` | Formats the list of files redirected from pipeline via standard input. Formatter will iterate over | -| | `Console.In` to read the list of files. Also applies to `--exclude` option. | +| `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. | +| `dotnet format --include 'test/Utilities/*.cs' --folder` | With single quotes, formats the files expanded from built-in glob expansion. A single file pattern is fed to formatter, which gets expanded internally. Also applies to `--exclude` option. | +| `ls tests/Utilities/*.cs \| dotnet format --include - --folder` | Formats the list of files redirected from pipeline via standard input. Formatter will iterate over `Console.In` to read the list of files. Also applies to `--exclude` option. | ### How To Uninstall