about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorMark Simulacrum <mark.simulacrum@gmail.com>2017-05-19 14:16:21 -0600
committerGitHub <noreply@github.com>2017-05-19 14:16:21 -0600
commit4c2273a0815f715437b76786a2e9946abce03728 (patch)
tree2f31e45dfaccdd21e76a14a59d7fb12fa2f74f85 /src/libstd
parent6a2bf05cbc6b872182dbb4db4f72b14d24682547 (diff)
parentf4e33a011ecbd4744c0a2c594ad69fd1a52bd9c5 (diff)
downloadrust-4c2273a0815f715437b76786a2e9946abce03728.tar.gz
rust-4c2273a0815f715437b76786a2e9946abce03728.zip
Rollup merge of #42079 - seeekr:patch-1, r=steveklabnik
fix typo in libstd/sync/mpsc/mod.rs docs
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/sync/mpsc/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs
index 2cb649ce67b..284a5fbd9d5 100644
--- a/src/libstd/sync/mpsc/mod.rs
+++ b/src/libstd/sync/mpsc/mod.rs
@@ -1067,7 +1067,7 @@ impl<T> Receiver<T> {
         Receiver { inner: UnsafeCell::new(inner) }
     }
 
-    /// Attempts to return a pending value on this receiver without blocking
+    /// Attempts to return a pending value on this receiver without blocking.
     ///
     /// This method will never block the caller in order to wait for data to
     /// become available. Instead, this will always return immediately with a