We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e6dec0 commit 1579fbdCopy full SHA for 1579fbd
src/libstd/ascii.rs
@@ -63,7 +63,7 @@ pub trait AsciiExt {
63
#[stable(feature = "rust1", since = "1.0.0")]
64
fn is_ascii(&self) -> bool;
65
66
- /// 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.
67
///
68
/// ASCII letters 'a' to 'z' are mapped to 'A' to 'Z',
69
/// but non-ASCII letters are unchanged.
@@ -92,7 +92,7 @@ pub trait AsciiExt {
92
93
fn to_ascii_uppercase(&self) -> Self::Owned;
94
95
- /// 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.
96
97
/// ASCII letters 'A' to 'Z' are mapped to 'a' to 'z',
98
0 commit comments