@@ -735,7 +735,7 @@ impl String {
735
735
/// assert!(String::from_utf16le(v).is_err());
736
736
/// ```
737
737
#[ cfg( not( no_global_oom_handling) ) ]
738
- #[ unstable( feature = "str_from_utf16_endian" , issue = "none" , reason = "recently added ") ]
738
+ #[ unstable( feature = "str_from_utf16_endian" , issue = "116258 " ) ]
739
739
pub fn from_utf16le ( v : & [ u8 ] ) -> Result < String , FromUtf16Error > {
740
740
if v. len ( ) % 2 != 0 {
741
741
return Err ( FromUtf16Error ( ( ) ) ) ;
@@ -774,7 +774,7 @@ impl String {
774
774
/// String::from_utf16le_lossy(v));
775
775
/// ```
776
776
#[ cfg( not( no_global_oom_handling) ) ]
777
- #[ unstable( feature = "str_from_utf16_endian" , issue = "none" , reason = "recently added ") ]
777
+ #[ unstable( feature = "str_from_utf16_endian" , issue = "116258 " ) ]
778
778
pub fn from_utf16le_lossy ( v : & [ u8 ] ) -> String {
779
779
match ( cfg ! ( target_endian = "little" ) , unsafe { v. align_to :: < u16 > ( ) } ) {
780
780
( true , ( [ ] , v, [ ] ) ) => Self :: from_utf16_lossy ( v) ,
@@ -810,7 +810,7 @@ impl String {
810
810
/// assert!(String::from_utf16be(v).is_err());
811
811
/// ```
812
812
#[ cfg( not( no_global_oom_handling) ) ]
813
- #[ unstable( feature = "str_from_utf16_endian" , issue = "none" , reason = "recently added ") ]
813
+ #[ unstable( feature = "str_from_utf16_endian" , issue = "116258 " ) ]
814
814
pub fn from_utf16be ( v : & [ u8 ] ) -> Result < String , FromUtf16Error > {
815
815
if v. len ( ) % 2 != 0 {
816
816
return Err ( FromUtf16Error ( ( ) ) ) ;
@@ -849,7 +849,7 @@ impl String {
849
849
/// String::from_utf16be_lossy(v));
850
850
/// ```
851
851
#[ cfg( not( no_global_oom_handling) ) ]
852
- #[ unstable( feature = "str_from_utf16_endian" , issue = "none" , reason = "recently added ") ]
852
+ #[ unstable( feature = "str_from_utf16_endian" , issue = "116258 " ) ]
853
853
pub fn from_utf16be_lossy ( v : & [ u8 ] ) -> String {
854
854
match ( cfg ! ( target_endian = "big" ) , unsafe { v. align_to :: < u16 > ( ) } ) {
855
855
( true , ( [ ] , v, [ ] ) ) => Self :: from_utf16_lossy ( v) ,
0 commit comments