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)))