tiny doc wording change

This commit is contained in:
Son 2017-02-04 00:16:56 +11:00
parent f45992b300
commit 3c020df3e9

View file

@ -36,7 +36,7 @@ impl WaitTimeoutResult {
/// consumes no CPU time while waiting for an event to occur. Condition
/// variables are typically associated with a boolean predicate (a condition)
/// and a mutex. The predicate is always verified inside of the mutex before
/// determining that thread must block.
/// determining that a thread must block.
///
/// Functions in this module will block the current **thread** of execution and
/// are bindings to system-provided condition variables where possible. Note