Fix tiny error in output string
This commit is contained in:
committed by
Matthias Mailänder
parent
2f0f5f4cda
commit
9ed2e699c6
@@ -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)))
|
||||
|
||||
Reference in New Issue
Block a user