diff options
author | Andy Davidoff <disruptek@users.noreply.github.com> | 2020-05-11 02:59:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-11 02:59:31 -0400 |
commit | 8018449319746f04a0c6436f1a0a3a5c6798d95c (patch) | |
tree | 1fc4202354cb751d033dc45ea00b4e6e5bd77c0a | |
parent | 7c24250a575b4d441ba6d7301714cbb246425fb6 (diff) | |
download | Nim-8018449319746f04a0c6436f1a0a3a5c6798d95c.tar.gz |
simple typo in locks.nim (#14297)
-rw-r--r-- | lib/core/locks.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/locks.nim b/lib/core/locks.nim index 42d67388f..7e2f4ad34 100644 --- a/lib/core/locks.nim +++ b/lib/core/locks.nim @@ -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.} = |