mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-30 21:16:27 +03:00
make sure to_ascii_lowercase actually leaves upper-case non-ASCII characters alone
This commit is contained in:
@@ -4000,11 +4000,11 @@ pub fn make_ascii_uppercase(&mut self) {
|
||||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// let mut s = String::from("Grüße, Jürgen ❤");
|
||||
/// let mut s = String::from("GRÜßE, JÜRGEN ❤");
|
||||
///
|
||||
/// s.make_ascii_lowercase();
|
||||
///
|
||||
/// assert_eq!("grüße, jürgen ❤", s);
|
||||
/// assert_eq!("grÜße, jÜrgen ❤", s);
|
||||
/// ```
|
||||
#[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
|
||||
pub fn make_ascii_lowercase(&mut self) {
|
||||
|
||||
Reference in New Issue
Block a user