From f5a37f0b021d825103d8f1a42116b4854f689772 Mon Sep 17 00:00:00 2001 From: Josef Pihrt Date: Thu, 12 Aug 2021 02:15:03 +0200 Subject: [PATCH] Update footer text --- src/CommandLine/Commands/HelpCommand.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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."; } } }