Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/CommandLine/HelpTextGenerator.cs')
-rw-r--r--src/coreclr/tools/Common/CommandLine/HelpTextGenerator.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/coreclr/tools/Common/CommandLine/HelpTextGenerator.cs b/src/coreclr/tools/Common/CommandLine/HelpTextGenerator.cs
index afe1f0a1a5d..3c2f6219013 100644
--- a/src/coreclr/tools/Common/CommandLine/HelpTextGenerator.cs
+++ b/src/coreclr/tools/Common/CommandLine/HelpTextGenerator.cs
@@ -65,7 +65,7 @@ namespace Internal.CommandLine
sb.Append(usageHeader);
if (syntaxElements.Any())
- sb.Append(@" ");
+ sb.Append(' ');
var syntaxIndent = usageHeader.Length + 1;
var syntaxMaxWidth = maxWidth - syntaxIndent;
@@ -169,7 +169,7 @@ namespace Internal.CommandLine
{
var sb = new StringBuilder();
- sb.Append(@"[");
+ sb.Append('[');
sb.Append(option.GetDisplayName());
if (!option.IsFlag)
@@ -178,7 +178,7 @@ namespace Internal.CommandLine
if (option.IsList)
sb.Append(@"...");
- sb.Append(@"]");
+ sb.Append(']');
return sb.ToString();
}
@@ -252,7 +252,7 @@ namespace Internal.CommandLine
}
if (sb.Length > 0)
- sb.Append(@" ");
+ sb.Append(' ');
sb.Append(token);
}