File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -595,9 +595,7 @@ pub trait SliceConcat<Separator: ?Sized>: Sized {
595
595
fn join ( slice : & [ Self ] , sep : & Separator ) -> Self :: Output ;
596
596
}
597
597
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" ) ]
601
599
impl < T : Clone , V : Borrow < [ T ] > > SliceConcat < T > for V {
602
600
type Output = Vec < T > ;
603
601
Original file line number Diff line number Diff line change @@ -71,9 +71,7 @@ pub use core::str::SplitAsciiWhitespace;
71
71
#[ stable( feature = "str_escape" , since = "1.34.0" ) ]
72
72
pub use core:: str:: { EscapeDebug , EscapeDefault , EscapeUnicode } ;
73
73
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" ) ]
77
75
impl < S : Borrow < str > > SliceConcat < str > for S {
78
76
type Output = String ;
79
77
You can’t perform that action at this time.
0 commit comments