about summary refs log tree commit diff
path: root/src/libstd_unicode
diff options
context:
space:
mode:
authorColin Wallace <wallacoloo@gmail.com>2017-03-25 15:46:13 -0700
committerColin Wallace <wallacoloo@gmail.com>2017-03-25 15:46:13 -0700
commit53b70953c3e628794debf38acfad90f21bc74a7e (patch)
treebdd5db940d841dfe08db750ef7ee5d432388bcc8 /src/libstd_unicode
parent49c67bd632e961a57863805e5d0a400f97da9b93 (diff)
downloadrust-53b70953c3e628794debf38acfad90f21bc74a7e.tar.gz
rust-53b70953c3e628794debf38acfad90f21bc74a7e.zip
char::to_uppercase doc typo: s/lowercase/uppercase/
Diffstat (limited to 'src/libstd_unicode')
-rw-r--r--src/libstd_unicode/char.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd_unicode/char.rs b/src/libstd_unicode/char.rs
index b980300126e..e612be52e77 100644
--- a/src/libstd_unicode/char.rs
+++ b/src/libstd_unicode/char.rs
@@ -846,7 +846,7 @@ impl char {
     /// will be returned back by the iterator.
     ///
     /// This performs complex unconditional mappings with no tailoring: it maps
-    /// one Unicode character to its lowercase equivalent according to the
+    /// one Unicode character to its uppercase equivalent according to the
     /// [Unicode database] and the additional complex mappings
     /// [`SpecialCasing.txt`]. Conditional mappings (based on context or
     /// language) are not considered here.