Merge pull request #7063 from Znarf64/core_sync_typo

Fix typo in core/sync/primitives.odin
This commit is contained in:
gingerBill
2026-07-16 11:18:56 +01:00
committed by GitHub

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.