Skip to content

Commit dad3933

Browse files
committed
use unique feature name for std::sync::mpsc::IntoIter
1 parent b28f792 commit dad3933

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
@@ -309,7 +309,7 @@ pub struct Iter<'a, T: 'a> {
309309
/// An owning iterator over messages on a receiver, this iterator will block
310310
/// whenever `next` is called, waiting for a new message, and `None` will be
311311
/// returned when the corresponding channel has hung up.
312-
#[stable(feature = "rust1", since = "1.1.0")]
312+
#[stable(feature = "rust1.1", since = "1.1.0")]
313313
pub struct IntoIter<T> {
314314
rx: Receiver<T>
315315
}

0 commit comments

Comments
 (0)