Skip to content

Commit 5397dfc

Browse files
committed
Remove obsolete “should not have to exist” reasons
1 parent 909f5a0 commit 5397dfc

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/liballoc/slice.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -595,9 +595,7 @@ pub trait SliceConcat<Separator: ?Sized>: Sized {
595595
fn join(slice: &[Self], sep: &Separator) -> Self::Output;
596596
}
597597

598-
#[unstable(feature = "slice_concat_ext",
599-
reason = "trait should not have to exist",
600-
issue = "27747")]
598+
#[unstable(feature = "slice_concat_ext", issue = "27747")]
601599
impl<T: Clone, V: Borrow<[T]>> SliceConcat<T> for V {
602600
type Output = Vec<T>;
603601

src/liballoc/str.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,7 @@ pub use core::str::SplitAsciiWhitespace;
7171
#[stable(feature = "str_escape", since = "1.34.0")]
7272
pub use core::str::{EscapeDebug, EscapeDefault, EscapeUnicode};
7373

74-
#[unstable(feature = "slice_concat_ext",
75-
reason = "trait should not have to exist",
76-
issue = "27747")]
74+
#[unstable(feature = "slice_concat_ext", issue = "27747")]
7775
impl<S: Borrow<str>> SliceConcat<str> for S {
7876
type Output = String;
7977

0 commit comments

Comments
 (0)