From 44be6cea94520102743739035898ebc65af148ca Mon Sep 17 00:00:00 2001 From: Moath Altarawneh Date: Fri, 13 Jan 2023 17:38:10 +0300 Subject: [PATCH] Update Program.cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit a small change to line 174 to use an easier way to format the string 👍 --- OpenRA.Utility/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Utility/Program.cs b/OpenRA.Utility/Program.cs index e1b51b1134..bcb4ac6a7e 100644 --- a/OpenRA.Utility/Program.cs +++ b/OpenRA.Utility/Program.cs @@ -171,7 +171,7 @@ namespace OpenRA var args = descParts.Take(descParts.Length - 1).JoinWith(" "); var desc = descParts[descParts.Length - 1]; - Console.WriteLine(" {0} {1}{3} {2}{3}", key, args, desc, Environment.NewLine); + Console.WriteLine($" {key} {args}{Environment.NewLine} {desc}{Environment.NewLine}"); } } }