File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -829,7 +829,8 @@ impl char {
829829 /// // Sometimes the result is more than one character:
830830 /// assert_eq!('İ'.to_lowercase().to_string(), "i\u{307}");
831831 ///
832- /// // Japanese kanji characters do not have case, and so:
832+ /// // Characters that do not have both uppercase and lowercase
833+ /// // convert into themselves.
833834 /// assert_eq!('山'.to_lowercase().to_string(), "山");
834835 /// ```
835836 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -889,7 +890,8 @@ impl char {
889890 /// // Sometimes the result is more than one character:
890891 /// assert_eq!('ß'.to_uppercase().to_string(), "SS");
891892 ///
892- /// // Japanese kanji characters do not have case, and so:
893+ /// // Characters that do not have both uppercase and lowercase
894+ /// // convert into themselves.
893895 /// assert_eq!('山'.to_uppercase().to_string(), "山");
894896 /// ```
895897 ///
You can’t perform that action at this time.
0 commit comments