Skip to content

Commit e48617f

Browse files
committedMar 10, 2025
Changing #[stable] tag
1 parent 8bbc080 commit e48617f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎library/core/src/slice/iter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3372,7 +3372,7 @@ where
33723372
#[stable(feature = "slice_group_by", since = "1.77.0")]
33733373
impl<'a, T: 'a, P> FusedIterator for ChunkBy<'a, T, P> where P: FnMut(&T, &T) -> bool {}
33743374

3375-
#[stable(feature = "slice_group_by", since = "1.77.0")]
3375+
#[stable(feature = "slice_group_by_clone", since = "CURRENT_RUSTC_VERSION")]
33763376
impl<'a, T: 'a, P: Clone> Clone for ChunkBy<'a, T, P> {
33773377
fn clone(&self) -> Self {
33783378
Self { slice: self.slice, predicate: self.predicate.clone() }

0 commit comments

Comments
 (0)