about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlan Stoate <alan.stoate@gmail.com>2017-03-27 07:46:43 +1030
committerGitHub <noreply@github.com>2017-03-27 07:46:43 +1030
commit1579fbd8ca8452d462f76e47a5367c1d51fb8d43 (patch)
tree1d49b5b5c5ed80a810658eb97590b9cb65e5fe59 /src/libstd
parent6e6dec0cab0731c4c32f6592f02c02cf4fd03a8d (diff)
downloadrust-1579fbd8ca8452d462f76e47a5367c1d51fb8d43.tar.gz
rust-1579fbd8ca8452d462f76e47a5367c1d51fb8d43.zip
Fixed spelling mistakes
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/ascii.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/ascii.rs b/src/libstd/ascii.rs
index ba2b059f828..1cac11f668d 100644
--- a/src/libstd/ascii.rs
+++ b/src/libstd/ascii.rs
@@ -63,7 +63,7 @@ pub trait AsciiExt {
     #[stable(feature = "rust1", since = "1.0.0")]
     fn is_ascii(&self) -> bool;
 
-    /// Makes a copy of the value in it's ASCII upper case equivalent.
+    /// Makes a copy of the value in its ASCII upper case equivalent.
     ///
     /// ASCII letters 'a' to 'z' are mapped to 'A' to 'Z',
     /// but non-ASCII letters are unchanged.
@@ -92,7 +92,7 @@ pub trait AsciiExt {
     #[stable(feature = "rust1", since = "1.0.0")]
     fn to_ascii_uppercase(&self) -> Self::Owned;
 
-    /// Makes a copy of the value in it's ASCII lower case equivalent.
+    /// Makes a copy of the value in its ASCII lower case equivalent.
     ///
     /// ASCII letters 'A' to 'Z' are mapped to 'a' to 'z',
     /// but non-ASCII letters are unchanged.