Skip to content

Commit e300c19

Browse files
committed
pacify tidy
1 parent 8efa793 commit e300c19

File tree

9 files changed

+101
-88
lines changed

9 files changed

+101
-88
lines changed

src/liballoc/collections/binary_heap.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ use core::ops::{Deref, DerefMut};
152152
use core::ptr;
153153

154154
use crate::slice;
155-
use crate::vec::{self, Vec, AsIntoIter};
155+
use crate::vec::{self, AsIntoIter, Vec};
156156

157157
use super::SpecExtend;
158158

@@ -1145,7 +1145,7 @@ impl<T> ExactSizeIterator for IntoIter<T> {
11451145
#[stable(feature = "fused", since = "1.26.0")]
11461146
impl<T> FusedIterator for IntoIter<T> {}
11471147

1148-
#[unstable(issue = "0", feature = "inplace_iteration")]
1148+
#[unstable(issue = "none", feature = "inplace_iteration")]
11491149
unsafe impl<T> SourceIter for IntoIter<T> {
11501150
type Source = IntoIter<T>;
11511151

@@ -1155,7 +1155,7 @@ unsafe impl<T> SourceIter for IntoIter<T> {
11551155
}
11561156
}
11571157

1158-
#[unstable(issue = "0", feature = "inplace_iteration")]
1158+
#[unstable(issue = "none", feature = "inplace_iteration")]
11591159
unsafe impl<I> InPlaceIterable for IntoIter<I> {}
11601160

11611161
impl<I> AsIntoIter<I> for IntoIter<I> {

src/liballoc/vec.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2800,7 +2800,7 @@ impl<T> FusedIterator for IntoIter<T> {}
28002800
unsafe impl<T> TrustedLen for IntoIter<T> {}
28012801

28022802
#[doc(hidden)]
2803-
#[unstable(issue = "0", feature = "std_internals")]
2803+
#[unstable(issue = "none", feature = "std_internals")]
28042804
// T: Copy as approximation for !Drop since get_unchecked does not advance self.ptr
28052805
// and thus we can't implement drop-handling
28062806
unsafe impl<T> TrustedRandomAccess for IntoIter<T>
@@ -2833,10 +2833,10 @@ unsafe impl<#[may_dangle] T> Drop for IntoIter<T> {
28332833
}
28342834
}
28352835

2836-
#[unstable(issue = "0", feature = "inplace_iteration")]
2836+
#[unstable(issue = "none", feature = "inplace_iteration")]
28372837
unsafe impl<T> InPlaceIterable for IntoIter<T> {}
28382838

2839-
#[unstable(issue = "0", feature = "inplace_iteration")]
2839+
#[unstable(issue = "none", feature = "inplace_iteration")]
28402840
unsafe impl<T> SourceIter for IntoIter<T> {
28412841
type Source = IntoIter<T>;
28422842

0 commit comments

Comments
 (0)