Auto merge of #42111 - ollie27:stab, r=Mark-Simulacrum
Correct some stability versions These were found by running tidy on stable versions of rust and finding features stabilised with the wrong version numbers.
This commit is contained in:
@@ -683,7 +683,7 @@ impl ExactSizeIterator for Args {
|
||||
fn is_empty(&self) -> bool { self.inner.is_empty() }
|
||||
}
|
||||
|
||||
#[stable(feature = "env_iterators", since = "1.11.0")]
|
||||
#[stable(feature = "env_iterators", since = "1.12.0")]
|
||||
impl DoubleEndedIterator for Args {
|
||||
fn next_back(&mut self) -> Option<String> {
|
||||
self.inner.next_back().map(|s| s.into_string().unwrap())
|
||||
@@ -710,7 +710,7 @@ impl ExactSizeIterator for ArgsOs {
|
||||
fn is_empty(&self) -> bool { self.inner.is_empty() }
|
||||
}
|
||||
|
||||
#[stable(feature = "env_iterators", since = "1.11.0")]
|
||||
#[stable(feature = "env_iterators", since = "1.12.0")]
|
||||
impl DoubleEndedIterator for ArgsOs {
|
||||
fn next_back(&mut self) -> Option<OsString> { self.inner.next_back() }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user