about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorDenis Andrejew <da.colonel@gmail.com>2017-05-18 08:45:18 +0200
committerGitHub <noreply@github.com>2017-05-18 08:45:18 +0200
commitf4e33a011ecbd4744c0a2c594ad69fd1a52bd9c5 (patch)
tree6da6bae33ebf8078d5127a57b593eebf2aee08f8 /src/libstd/sync
parent6af8c6c7d1173f68addbf51560e6a009b30c9a93 (diff)
downloadrust-f4e33a011ecbd4744c0a2c594ad69fd1a52bd9c5.tar.gz
rust-f4e33a011ecbd4744c0a2c594ad69fd1a52bd9c5.zip
fix typo in libstd/sync/mpsc/mod.rs docs
Diffstat (limited to 'src/libstd/sync')
-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