Fix comments

This commit is contained in:
Feoramund
2024-09-08 18:23:28 -04:00
parent 2938655a3d
commit 16cd16b91e
2 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -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.