SyncDictionary: Fixed typo in comment

This commit is contained in:
MrGadget 2024-02-01 06:32:23 -05:00
parent 7671bde0bf
commit c54bd2c4f1

View File

@ -30,7 +30,7 @@ struct Change
// list of changes.
// -> insert/delete/clear is only ONE change
// -> changing the same slot 10x caues 10 changes.
// -> changing the same slot 10x causes 10 changes.
// -> note that this grows until next sync(!)
// TODO Dictionary<key, change> to avoid ever growing changes / redundant changes!
readonly List<Change> changes = new List<Change>();