From 4ac3601aa766811b7612579f6ad85b91400758a2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Mar 2026 15:49:05 +0000 Subject: [PATCH] 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 --- .skills/csharp-best-practices/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.skills/csharp-best-practices/SKILL.md b/.skills/csharp-best-practices/SKILL.md index 9753a2ed..ba4d826c 100644 --- a/.skills/csharp-best-practices/SKILL.md +++ b/.skills/csharp-best-practices/SKILL.md @@ -804,7 +804,7 @@ foreach (var s in items) combined += s + ", "; | Immutable snapshots | `ImmutableDictionary` | Persistent structure | | Membership test | `HashSet` / `FrozenSet` | FrozenSet for static | | Priority queue | `PriorityQueue` | .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` | Over `BlockingCollection` | | Temp buffer | `ArrayPool` / `stackalloc` | Zero/low alloc |