We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e2051c commit 025f41fCopy full SHA for 025f41f
src/libstd/sync/mpsc/mod.rs
@@ -1247,7 +1247,7 @@ impl<T> Receiver<T> {
1247
/// [`SyncSender`]: struct.SyncSender.html
1248
/// [`Err`]: ../../../std/result/enum.Result.html#variant.Err
1249
///
1250
- /// # Panics
+ /// # Known Issues
1251
1252
/// There is currently a known issue (see [`#39364`]) that causes `recv_timeout`
1253
/// to panic unexpectedly with the following example:
@@ -1256,7 +1256,7 @@ impl<T> Receiver<T> {
1256
/// use std::sync::mpsc::channel;
1257
/// use std::thread;
1258
/// use std::time::Duration;
1259
- ///
+ ///
1260
/// let (tx, rx) = channel::<String>();
1261
1262
/// thread::spawn(move || {
0 commit comments