1010//!
1111//! The [`escape_default`] function provides an iterator over the bytes of an
1212//! escaped version of the character given.
13- //!
14- //! [`AsciiExt`]: trait.AsciiExt.html
15- //! [`escape_default`]: fn.escape_default.html
1613
1714#![ stable( feature = "rust1" , since = "1.0.0" ) ]
1815
@@ -52,7 +49,7 @@ pub trait AsciiExt {
5249 ///
5350 /// # Note
5451 ///
55- /// This method will be deprecated in favor of the identically-named
52+ /// This method is deprecated in favor of the identically-named
5653 /// inherent methods on `u8`, `char`, `[u8]` and `str`.
5754 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
5855 fn is_ascii ( & self ) -> bool ;
@@ -69,10 +66,10 @@ pub trait AsciiExt {
6966 ///
7067 /// # Note
7168 ///
72- /// This method will be deprecated in favor of the identically-named
69+ /// This method is deprecated in favor of the identically-named
7370 /// inherent methods on `u8`, `char`, `[u8]` and `str`.
7471 ///
75- /// [`make_ascii_uppercase`]: #tymethod. make_ascii_uppercase
72+ /// [`make_ascii_uppercase`]: AsciiExt:: make_ascii_uppercase
7673 /// [`str::to_uppercase`]: ../primitive.str.html#method.to_uppercase
7774 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
7875 #[ allow( deprecated) ]
@@ -90,10 +87,10 @@ pub trait AsciiExt {
9087 ///
9188 /// # Note
9289 ///
93- /// This method will be deprecated in favor of the identically-named
90+ /// This method is deprecated in favor of the identically-named
9491 /// inherent methods on `u8`, `char`, `[u8]` and `str`.
9592 ///
96- /// [`make_ascii_lowercase`]: #tymethod. make_ascii_lowercase
93+ /// [`make_ascii_lowercase`]: AsciiExt:: make_ascii_lowercase
9794 /// [`str::to_lowercase`]: ../primitive.str.html#method.to_lowercase
9895 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
9996 #[ allow( deprecated) ]
@@ -106,7 +103,7 @@ pub trait AsciiExt {
106103 ///
107104 /// # Note
108105 ///
109- /// This method will be deprecated in favor of the identically-named
106+ /// This method is deprecated in favor of the identically-named
110107 /// inherent methods on `u8`, `char`, `[u8]` and `str`.
111108 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
112109 fn eq_ignore_ascii_case ( & self , other : & Self ) -> bool ;
@@ -121,10 +118,10 @@ pub trait AsciiExt {
121118 ///
122119 /// # Note
123120 ///
124- /// This method will be deprecated in favor of the identically-named
121+ /// This method is deprecated in favor of the identically-named
125122 /// inherent methods on `u8`, `char`, `[u8]` and `str`.
126123 ///
127- /// [`to_ascii_uppercase`]: #tymethod. to_ascii_uppercase
124+ /// [`to_ascii_uppercase`]: AsciiExt:: to_ascii_uppercase
128125 #[ stable( feature = "ascii" , since = "1.9.0" ) ]
129126 fn make_ascii_uppercase ( & mut self ) ;
130127
@@ -138,10 +135,10 @@ pub trait AsciiExt {
138135 ///
139136 /// # Note
140137 ///
141- /// This method will be deprecated in favor of the identically-named
138+ /// This method is deprecated in favor of the identically-named
142139 /// inherent methods on `u8`, `char`, `[u8]` and `str`.
143140 ///
144- /// [`to_ascii_lowercase`]: #tymethod. to_ascii_lowercase
141+ /// [`to_ascii_lowercase`]: AsciiExt:: to_ascii_lowercase
145142 #[ stable( feature = "ascii" , since = "1.9.0" ) ]
146143 fn make_ascii_lowercase ( & mut self ) ;
147144}
0 commit comments