1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-09 23:34:06 +02:00

Fix typo in error message in FileSerializer

This commit is contained in:
chylex 2017-08-30 20:34:02 +02:00
parent 7266d705d3
commit 5f1c30609c

View File

@ -90,7 +90,7 @@ public void Read(string file, T obj){
HandleUnknownProperties?.Invoke(obj, unknownProperties);
if (unknownProperties.Count > 0){
throw new SerializationException($"Invalid file format, unknown properties: {string.Join(", ", unknownProperties.Keys)}+");
throw new SerializationException($"Invalid file format, unknown properties: {string.Join(", ", unknownProperties.Keys)}");
}
}
}