simple typo in locks.nim (#14297)

This commit is contained in:
Andy Davidoff
2020-05-11 02:59:31 -04:00
committed by GitHub
parent 7c24250a57
commit 8018449319

View File

@@ -50,7 +50,7 @@ proc initCond*(cond: var Cond) {.inline.} =
initSysCond(cond)
proc deinitCond*(cond: var Cond) {.inline.} =
## Frees the resources associated with the lock.
## Frees the resources associated with the condition variable.
deinitSysCond(cond)
proc wait*(cond: var Cond, lock: var Lock) {.inline.} =