diff --git a/src/CommandLine/Commands/HelpCommand.cs b/src/CommandLine/Commands/HelpCommand.cs index d5a8b7e408..756afd0b22 100644 --- a/src/CommandLine/Commands/HelpCommand.cs +++ b/src/CommandLine/Commands/HelpCommand.cs @@ -192,9 +192,7 @@ internal static string GetHeadingText() internal static string GetFooterText(string command = null) { - return $"Run 'roslynator help {command ?? "[command]"}' for more information on a command." - + Environment.NewLine - + $"Run 'roslynator help {command ?? "[command]"} -v d' for more information on option values."; + return $"Run 'roslynator help {command ?? "[command]"}' for more information on a command."; } } }