We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3087a1f commit 5b7f330Copy full SHA for 5b7f330
src/libstd_unicode/char.rs
@@ -829,7 +829,7 @@ impl char {
829
/// // Sometimes the result is more than one character:
830
/// assert_eq!('İ'.to_lowercase().to_string(), "i\u{307}");
831
///
832
- /// // Japanese scripts do not have case, and so:
+ /// // Japanese kanji characters do not have case, and so:
833
/// assert_eq!('山'.to_lowercase().to_string(), "山");
834
/// ```
835
#[stable(feature = "rust1", since = "1.0.0")]
@@ -889,7 +889,7 @@ impl char {
889
890
/// assert_eq!('ß'.to_uppercase().to_string(), "SS");
891
892
- /// // Japanese does not have case, and so:
893
/// assert_eq!('山'.to_uppercase().to_string(), "山");
894
895
0 commit comments