We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 43e994c + 210a2a2 commit ca26ef3Copy full SHA for ca26ef3
src/libstd/io/mod.rs
@@ -1829,7 +1829,6 @@ impl<T> Take<T> {
1829
/// # Examples
1830
///
1831
/// ```no_run
1832
- /// #![feature(take_set_limit)]
1833
/// use std::io;
1834
/// use std::io::prelude::*;
1835
/// use std::fs::File;
@@ -1845,7 +1844,7 @@ impl<T> Take<T> {
1845
1844
/// Ok(())
1846
/// }
1847
/// ```
1848
- #[unstable(feature = "take_set_limit", issue = "42781")]
+ #[stable(feature = "take_set_limit", since = "1.27.0")]
1849
pub fn set_limit(&mut self, limit: u64) {
1850
self.limit = limit;
1851
}
0 commit comments