Skip to content

Commit

Permalink
make sure to_ascii_lowercase actually leaves upper-case non-ASCII cha…
Browse files Browse the repository at this point in the history
…racters alone
  • Loading branch information
RalfJung committed Jun 10, 2019
1 parent 5d4aef6 commit 7b97cf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libcore/str/mod.rs
Expand Up @@ -4000,11 +4000,11 @@ impl str {
/// # 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) {
Expand Down

0 comments on commit 7b97cf9

Please sign in to comment.