about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorFelix Rabe <felix@rabe.io>2018-08-07 16:39:09 +0200
committerGitHub <noreply@github.com>2018-08-07 16:39:09 +0200
commit6e2051cd084aee3aa5cef0d8ec65fc564f86ed1c (patch)
tree00776ff9005f314ba01166eb16b4693c8e1c1d33 /src/libstd/sync
parentc574720d88f9310ed3fc0489c9a8d5c3ef832c2c (diff)
downloadrust-6e2051cd084aee3aa5cef0d8ec65fc564f86ed1c.tar.gz
rust-6e2051cd084aee3aa5cef0d8ec65fc564f86ed1c.zip
Less words better than moar words
Diffstat (limited to 'src/libstd/sync')
-rw-r--r--src/libstd/sync/mpsc/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs
index de553556207..21a6adf5827 100644
--- a/src/libstd/sync/mpsc/mod.rs
+++ b/src/libstd/sync/mpsc/mod.rs
@@ -1249,8 +1249,8 @@ impl<T> Receiver<T> {
     ///
     /// # Panics
     ///
-    /// There is currently a known issue with this `recv_timeout` (see [`#39364`])
-    /// that causes it to panic unexpectedly with the following example:
+    /// There is currently a known issue (see [`#39364`]) that causes `recv_timeout`
+    /// to panic unexpectedly with the following example:
     ///
     /// ```no_run
     /// use std::sync::mpsc::channel;