Fix typo in core/sync/primitives.odin

This commit is contained in:
Franz
2026-07-15 22:46:07 +02:00
parent a1cd49a1ae
commit 98a119b052

View File

@@ -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.