Fix British spelling 'Synchronisation' to American 'Synchronization' in collections table

Co-authored-by: milutinke <441903+milutinke@users.noreply.github.com>
Agent-Logs-Url: https://github.com/MCCTeam/Minecraft-Console-Client/sessions/8cdef112-415b-4769-877d-61f0e7a300eb
This commit is contained in:
copilot-swe-agent[bot] 2026-03-22 15:49:05 +00:00
parent 1e2847a48e
commit 4ac3601aa7

View file

@ -804,7 +804,7 @@ foreach (var s in items) combined += s + ", ";
| Immutable snapshots | `ImmutableDictionary<K,V>` | Persistent structure |
| Membership test | `HashSet<T>` / `FrozenSet<T>` | FrozenSet for static |
| Priority queue | `PriorityQueue<E,P>` | .NET 6+ |
| Synchronisation | `System.Threading.Lock` | C# 13; prefer over `lock(obj)` |
| Synchronization | `System.Threading.Lock` | C# 13; prefer over `lock(obj)` |
| Producer-consumer | `Channel<T>` | Over `BlockingCollection<T>` |
| Temp buffer | `ArrayPool<T>` / `stackalloc` | Zero/low alloc |