diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-09-08 18:23:28 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-09-11 08:39:23 -0400 |
| commit | 16cd16b91e9cabfba2d12e271712ca55cb16fa7d (patch) | |
| tree | f46ab5069724856df90297a453e0127c41e4ad54 /core/sync/primitives.odin | |
| parent | 2938655a3d8801d1327b0076812edcf357d760df (diff) | |
Fix comments
Diffstat (limited to 'core/sync/primitives.odin')
| -rw-r--r-- | core/sync/primitives.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sync/primitives.odin b/core/sync/primitives.odin index 8187c904b..f091de045 100644 --- a/core/sync/primitives.odin +++ b/core/sync/primitives.odin @@ -389,7 +389,7 @@ recursive_mutex_guard :: proc "contextless" (m: ^Recursive_Mutex) -> bool { A condition variable. `Cond` implements a condition variable, a rendezvous point for threads waiting -for signalling the occurence of an event. Condition variables are used on +for signalling the occurence of an event. Condition variables are used in conjuction with mutexes to provide a shared access to one or more shared variable. |