Trivial typo in exception message

This commit is contained in:
Pavlos Touboulidis
2014-07-12 04:35:31 +03:00
parent e9dd0b0fab
commit 451426bc3f

View File

@@ -112,7 +112,7 @@ namespace OpenRA
}
catch (ArgumentException ex)
{
throw new InvalidDataException("Duplicate key `{0}' in {1}".F(y.Key, y.Location), ex);
throw new InvalidDataException("Duplicate key '{0}' in {1}".F(y.Key, y.Location), ex);
}
}
return ret;