about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorSon <leson.phung@gmail.com>2017-02-04 00:16:56 +1100
committerSon <leson.phung@gmail.com>2017-02-04 00:16:56 +1100
commit3c020df3e905f6486fb793a0c41f3ac63f3aa255 (patch)
treed7b0a4cecbcc77c97604df237fa9912abb5e0689 /src/libstd/sync
parentf45992b3008eea7152434c41097fb28d9cfaf2c0 (diff)
downloadrust-3c020df3e905f6486fb793a0c41f3ac63f3aa255.tar.gz
rust-3c020df3e905f6486fb793a0c41f3ac63f3aa255.zip
tiny doc wording change
Diffstat (limited to 'src/libstd/sync')
-rw-r--r--src/libstd/sync/condvar.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/condvar.rs b/src/libstd/sync/condvar.rs
index 8ab30c51b28..5c85c4879a8 100644
--- a/src/libstd/sync/condvar.rs
+++ b/src/libstd/sync/condvar.rs
@@ -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