Fix tiny error in output string

This commit is contained in:
penev92
2022-04-26 01:44:50 +03:00
committed by Matthias Mailänder
parent 2f0f5f4cda
commit 9ed2e699c6

View File

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