From 9ed2e699c62e21504e1778b0433ee968b9dc9b16 Mon Sep 17 00:00:00 2001 From: penev92 Date: Tue, 26 Apr 2022 01:44:50 +0300 Subject: [PATCH] Fix tiny error in output string --- OpenRA.Mods.Common/Util.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Util.cs b/OpenRA.Mods.Common/Util.cs index fa27d6a46a..d7628260a0 100644 --- a/OpenRA.Mods.Common/Util.cs +++ b/OpenRA.Mods.Common/Util.cs @@ -234,7 +234,7 @@ namespace OpenRA.Mods.Common if (t.IsGenericType && t.GetGenericTypeDefinition() == typeof(Dictionary<,>)) { var args = t.GetGenericArguments().Select(FriendlyTypeName).ToArray(); - return $"Dictionary with Key: {args[0]}, Value {args[1]}"; + return $"Dictionary with Key: {args[0]}, Value: {args[1]}"; } if (t.IsSubclassOf(typeof(Array)))