Skip to content

Commit 43323b3

Browse files
committed
Fix since for mpsc_error_conversions
1 parent 7745a7a commit 43323b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libstd/sync/mpsc/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1625,7 +1625,7 @@ impl<T: Send> error::Error for TrySendError<T> {
16251625
}
16261626
}
16271627

1628-
#[stable(feature = "mpsc_error_conversions", since = "1.23.0")]
1628+
#[stable(feature = "mpsc_error_conversions", since = "1.24.0")]
16291629
impl<T> From<SendError<T>> for TrySendError<T> {
16301630
fn from(err: SendError<T>) -> TrySendError<T> {
16311631
match err {
@@ -1686,7 +1686,7 @@ impl error::Error for TryRecvError {
16861686
}
16871687
}
16881688

1689-
#[stable(feature = "mpsc_error_conversions", since = "1.23.0")]
1689+
#[stable(feature = "mpsc_error_conversions", since = "1.24.0")]
16901690
impl From<RecvError> for TryRecvError {
16911691
fn from(err: RecvError) -> TryRecvError {
16921692
match err {
@@ -1727,7 +1727,7 @@ impl error::Error for RecvTimeoutError {
17271727
}
17281728
}
17291729

1730-
#[stable(feature = "mpsc_error_conversions", since = "1.23.0")]
1730+
#[stable(feature = "mpsc_error_conversions", since = "1.24.0")]
17311731
impl From<RecvError> for RecvTimeoutError {
17321732
fn from(err: RecvError) -> RecvTimeoutError {
17331733
match err {

0 commit comments

Comments
 (0)