From 025f41f4c0db5ed65ae6a15ec8bb4e5872bc16ff Mon Sep 17 00:00:00 2001 From: Felix Rabe Date: Tue, 7 Aug 2018 17:34:34 +0200 Subject: [PATCH] "Panics" -> "Known Issues"; rm trailing WS --- src/libstd/sync/mpsc/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs index 21a6adf5827..59cf741487e 100644 --- a/src/libstd/sync/mpsc/mod.rs +++ b/src/libstd/sync/mpsc/mod.rs @@ -1247,7 +1247,7 @@ pub fn recv(&self) -> Result { /// [`SyncSender`]: struct.SyncSender.html /// [`Err`]: ../../../std/result/enum.Result.html#variant.Err /// - /// # Panics + /// # Known Issues /// /// There is currently a known issue (see [`#39364`]) that causes `recv_timeout` /// to panic unexpectedly with the following example: @@ -1256,7 +1256,7 @@ pub fn recv(&self) -> Result { /// use std::sync::mpsc::channel; /// use std::thread; /// use std::time::Duration; - /// + /// /// let (tx, rx) = channel::(); /// /// thread::spawn(move || { -- 2.44.0