Skip to content

Commit f536f7a

Browse files
committed
remove another #[stable] thingy and superfluous comma's
1 parent fab1fa9 commit f536f7a

File tree

1 file changed

+2
-3
lines changed
  • src/liballoc/collections/btree

1 file changed

+2
-3
lines changed

src/liballoc/collections/btree/set.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,6 @@ impl<'a, T: Ord> Iterator for SymmetricDifference<'a, T> {
11031103
#[stable(feature = "fused", since = "1.26.0")]
11041104
impl<T: Ord> FusedIterator for SymmetricDifference<'_, T> {}
11051105

1106-
#[stable(feature = "rust1", since = "1.0.0")]
11071106
impl<'a, T> Clone for IntersectionOther<'a, T> {
11081107
fn clone(&self) -> IntersectionOther<'a, T> {
11091108
match self {
@@ -1140,7 +1139,7 @@ impl<'a, T: Ord> Iterator for Intersection<'a, T> {
11401139
self_b.next();
11411140
}
11421141
}
1143-
},
1142+
}
11441143
IntersectionOther::SET(set) => loop {
11451144
match self.a.next() {
11461145
None => return None,
@@ -1150,7 +1149,7 @@ impl<'a, T: Ord> Iterator for Intersection<'a, T> {
11501149
}
11511150
}
11521151
}
1153-
},
1152+
}
11541153
}
11551154
}
11561155

0 commit comments

Comments
 (0)