File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ impl [u8] {
5252 /// Same as `to_ascii_lowercase(a) == to_ascii_lowercase(b)`,
5353 /// but without allocating and copying temporaries.
5454 #[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
55- #[ rustc_const_unstable ( feature = "const_eq_ignore_ascii_case" , issue = "131719 " ) ]
55+ #[ rustc_const_stable ( feature = "const_eq_ignore_ascii_case" , since = "CURRENT_RUSTC_VERSION " ) ]
5656 #[ must_use]
5757 #[ inline]
5858 pub const fn eq_ignore_ascii_case ( & self , other : & [ u8 ] ) -> bool {
Original file line number Diff line number Diff line change @@ -2671,7 +2671,7 @@ impl str {
26712671 /// assert!(!"Ferrös".eq_ignore_ascii_case("FERRÖS"));
26722672 /// ```
26732673 #[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
2674- #[ rustc_const_unstable ( feature = "const_eq_ignore_ascii_case" , issue = "131719 " ) ]
2674+ #[ rustc_const_stable ( feature = "const_eq_ignore_ascii_case" , since = "CURRENT_RUSTC_VERSION " ) ]
26752675 #[ must_use]
26762676 #[ inline]
26772677 pub const fn eq_ignore_ascii_case ( & self , other : & str ) -> bool {
You can’t perform that action at this time.
0 commit comments