File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1277,7 +1277,7 @@ impl char {
1277
1277
///
1278
1278
/// [`to_ascii_uppercase()`]: #method.to_ascii_uppercase
1279
1279
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
1280
- #[ rustc_const_unstable( feature = "const_char_make_ascii " , issue = "130698" ) ]
1280
+ #[ rustc_const_unstable( feature = "const_make_ascii " , issue = "130698" ) ]
1281
1281
#[ inline]
1282
1282
pub const fn make_ascii_uppercase ( & mut self ) {
1283
1283
* self = self . to_ascii_uppercase ( ) ;
@@ -1303,7 +1303,7 @@ impl char {
1303
1303
///
1304
1304
/// [`to_ascii_lowercase()`]: #method.to_ascii_lowercase
1305
1305
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
1306
- #[ rustc_const_unstable( feature = "const_char_make_ascii " , issue = "130698" ) ]
1306
+ #[ rustc_const_unstable( feature = "const_make_ascii " , issue = "130698" ) ]
1307
1307
#[ inline]
1308
1308
pub const fn make_ascii_lowercase ( & mut self ) {
1309
1309
* self = self . to_ascii_lowercase ( ) ;
Original file line number Diff line number Diff line change @@ -614,8 +614,9 @@ impl u8 {
614
614
///
615
615
/// [`to_ascii_uppercase`]: Self::to_ascii_uppercase
616
616
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
617
+ #[ rustc_const_unstable( feature = "const_make_ascii" , issue = "130698" ) ]
617
618
#[ inline]
618
- pub fn make_ascii_uppercase ( & mut self ) {
619
+ pub const fn make_ascii_uppercase ( & mut self ) {
619
620
* self = self . to_ascii_uppercase ( ) ;
620
621
}
621
622
@@ -639,8 +640,9 @@ impl u8 {
639
640
///
640
641
/// [`to_ascii_lowercase`]: Self::to_ascii_lowercase
641
642
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
643
+ #[ rustc_const_unstable( feature = "const_make_ascii" , issue = "130698" ) ]
642
644
#[ inline]
643
- pub fn make_ascii_lowercase ( & mut self ) {
645
+ pub const fn make_ascii_lowercase ( & mut self ) {
644
646
* self = self . to_ascii_lowercase ( ) ;
645
647
}
646
648
You can’t perform that action at this time.
0 commit comments