From 98a119b05299cd969d124989f13ff1e3987352d8 Mon Sep 17 00:00:00 2001 From: Franz Date: Wed, 15 Jul 2026 22:46:07 +0200 Subject: [PATCH] Fix typo in core/sync/primitives.odin --- core/sync/primitives.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/sync/primitives.odin b/core/sync/primitives.odin index 276427477..f10653a98 100644 --- a/core/sync/primitives.odin +++ b/core/sync/primitives.odin @@ -293,7 +293,7 @@ rw_mutex_shared_guard :: proc "contextless" (m: ^RW_Mutex) -> bool { /* Recursive mutual exclusion lock. -Recurisve mutex is just like a plain mutex, except it allows reentrancy. In +Recursive mutex is just like a plain mutex, except it allows reentrancy. In order for a thread to release the mutex for other threads, the mutex needs to be unlocked as many times, as it was locked.