about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2017-02-04 14:41:23 +0100
committerGitHub <noreply@github.com>2017-02-04 14:41:23 +0100
commitd81b440e92eec0f7dd0bebc7717cb99fac0bd3cc (patch)
tree1e81dd1f6c88ae0f85aa0314383515a79b051298 /src/libstd
parent8568fdc499453397351230f71c9df85e95a340bc (diff)
parent3c020df3e905f6486fb793a0c41f3ac63f3aa255 (diff)
downloadrust-d81b440e92eec0f7dd0bebc7717cb99fac0bd3cc.tar.gz
rust-d81b440e92eec0f7dd0bebc7717cb99fac0bd3cc.zip
Rollup merge of #39486 - phungleson:tiny-doc-wording-change, r=alexcrichton
Tiny doc wording change

Fix https://github.com/rust-lang/rust/issues/39366
Diffstat (limited to 'src/libstd')
-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