Update Program.cs

a small change to line 174 to use an easier way to format the string 👍
This commit is contained in:
Moath Altarawneh
2023-01-13 17:38:10 +03:00
committed by Pavel Penev
parent 5bf7fe852c
commit 44be6cea94

View File

@@ -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}");
}
}
}