Skip to content

Commit 16eee2a

Browse files
committed
Applied review comments
1 parent 3f0f409 commit 16eee2a

File tree

1 file changed

+6
-0
lines changed
  • library/std/src/sync/mpsc

1 file changed

+6
-0
lines changed

library/std/src/sync/mpsc/mod.rs

+6
Original file line numberDiff line numberDiff line change
@@ -1532,7 +1532,9 @@ impl<T: Send> error::Error for TrySendError<T> {
15321532
#[stable(feature = "mpsc_error_conversions", since = "1.24.0")]
15331533
impl<T> From<SendError<T>> for TrySendError<T> {
15341534
/// Converts a `SendError<T>` into a `TrySendError<T>`.
1535+
///
15351536
/// This conversion always returns a `TrySendError::Disconnected` containing the data in the `SendError<T>`.
1537+
///
15361538
/// No data is allocated on the heap.
15371539
fn from(err: SendError<T>) -> TrySendError<T> {
15381540
match err {
@@ -1580,7 +1582,9 @@ impl error::Error for TryRecvError {
15801582
#[stable(feature = "mpsc_error_conversions", since = "1.24.0")]
15811583
impl From<RecvError> for TryRecvError {
15821584
/// Converts a `RecvError` into a `TryRecvError`.
1585+
///
15831586
/// This conversion always returns `TryRecvError::Disconnected`.
1587+
///
15841588
/// No data is allocated on the heap.
15851589
fn from(err: RecvError) -> TryRecvError {
15861590
match err {
@@ -1613,7 +1617,9 @@ impl error::Error for RecvTimeoutError {
16131617
#[stable(feature = "mpsc_error_conversions", since = "1.24.0")]
16141618
impl From<RecvError> for RecvTimeoutError {
16151619
/// Converts a `RecvError` into a `RecvTimeoutError`.
1620+
///
16161621
/// This conversion always returns `RecvTimeoutError::Disconnected`.
1622+
///
16171623
/// No data is allocated on the heap.
16181624
fn from(err: RecvError) -> RecvTimeoutError {
16191625
match err {

0 commit comments

Comments
 (0)