Skip to content

Commit bea7932

Browse files
committed
bumped version number of std::sync::mpsc::IntoIter
1 parent b2d86a7 commit bea7932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sync/mpsc/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ pub struct Iter<'a, T: 'a> {
310310
/// An owning iterator over messages on a receiver, this iterator will block
311311
/// whenever `next` is called, waiting for a new message, and `None` will be
312312
/// returned when the corresponding channel has hung up.
313-
#[stable(feature = "rust1", since = "1.0.0")]
313+
#[stable(feature = "rust1", since = "1.1.0")]
314314
pub struct IntoIter<T> {
315315
rx: Receiver<T>
316316
}

0 commit comments

Comments
 (0)