Skip to content

Commit 025f41f

Browse files
authored
"Panics" -> "Known Issues"; rm trailing WS
1 parent 6e2051c commit 025f41f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/sync/mpsc/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1247,7 +1247,7 @@ impl<T> Receiver<T> {
12471247
/// [`SyncSender`]: struct.SyncSender.html
12481248
/// [`Err`]: ../../../std/result/enum.Result.html#variant.Err
12491249
///
1250-
/// # Panics
1250+
/// # Known Issues
12511251
///
12521252
/// There is currently a known issue (see [`#39364`]) that causes `recv_timeout`
12531253
/// to panic unexpectedly with the following example:
@@ -1256,7 +1256,7 @@ impl<T> Receiver<T> {
12561256
/// use std::sync::mpsc::channel;
12571257
/// use std::thread;
12581258
/// use std::time::Duration;
1259-
///
1259+
///
12601260
/// let (tx, rx) = channel::<String>();
12611261
///
12621262
/// thread::spawn(move || {

0 commit comments

Comments
 (0)