10
10
//!
11
11
//! The [`escape_default`] function provides an iterator over the bytes of an
12
12
//! escaped version of the character given.
13
- //!
14
- //! [`AsciiExt`]: trait.AsciiExt.html
15
- //! [`escape_default`]: fn.escape_default.html
16
13
17
14
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
18
15
@@ -52,7 +49,7 @@ pub trait AsciiExt {
52
49
///
53
50
/// # Note
54
51
///
55
- /// This method will be deprecated in favor of the identically-named
52
+ /// This method is deprecated in favor of the identically-named
56
53
/// inherent methods on `u8`, `char`, `[u8]` and `str`.
57
54
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
58
55
fn is_ascii ( & self ) -> bool ;
@@ -69,10 +66,10 @@ pub trait AsciiExt {
69
66
///
70
67
/// # Note
71
68
///
72
- /// This method will be deprecated in favor of the identically-named
69
+ /// This method is deprecated in favor of the identically-named
73
70
/// inherent methods on `u8`, `char`, `[u8]` and `str`.
74
71
///
75
- /// [`make_ascii_uppercase`]: #tymethod. make_ascii_uppercase
72
+ /// [`make_ascii_uppercase`]: AsciiExt:: make_ascii_uppercase
76
73
/// [`str::to_uppercase`]: ../primitive.str.html#method.to_uppercase
77
74
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
78
75
#[ allow( deprecated) ]
@@ -90,10 +87,10 @@ pub trait AsciiExt {
90
87
///
91
88
/// # Note
92
89
///
93
- /// This method will be deprecated in favor of the identically-named
90
+ /// This method is deprecated in favor of the identically-named
94
91
/// inherent methods on `u8`, `char`, `[u8]` and `str`.
95
92
///
96
- /// [`make_ascii_lowercase`]: #tymethod. make_ascii_lowercase
93
+ /// [`make_ascii_lowercase`]: AsciiExt:: make_ascii_lowercase
97
94
/// [`str::to_lowercase`]: ../primitive.str.html#method.to_lowercase
98
95
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
99
96
#[ allow( deprecated) ]
@@ -106,7 +103,7 @@ pub trait AsciiExt {
106
103
///
107
104
/// # Note
108
105
///
109
- /// This method will be deprecated in favor of the identically-named
106
+ /// This method is deprecated in favor of the identically-named
110
107
/// inherent methods on `u8`, `char`, `[u8]` and `str`.
111
108
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
112
109
fn eq_ignore_ascii_case ( & self , other : & Self ) -> bool ;
@@ -121,10 +118,10 @@ pub trait AsciiExt {
121
118
///
122
119
/// # Note
123
120
///
124
- /// This method will be deprecated in favor of the identically-named
121
+ /// This method is deprecated in favor of the identically-named
125
122
/// inherent methods on `u8`, `char`, `[u8]` and `str`.
126
123
///
127
- /// [`to_ascii_uppercase`]: #tymethod. to_ascii_uppercase
124
+ /// [`to_ascii_uppercase`]: AsciiExt:: to_ascii_uppercase
128
125
#[ stable( feature = "ascii" , since = "1.9.0" ) ]
129
126
fn make_ascii_uppercase ( & mut self ) ;
130
127
@@ -138,10 +135,10 @@ pub trait AsciiExt {
138
135
///
139
136
/// # Note
140
137
///
141
- /// This method will be deprecated in favor of the identically-named
138
+ /// This method is deprecated in favor of the identically-named
142
139
/// inherent methods on `u8`, `char`, `[u8]` and `str`.
143
140
///
144
- /// [`to_ascii_lowercase`]: #tymethod. to_ascii_lowercase
141
+ /// [`to_ascii_lowercase`]: AsciiExt:: to_ascii_lowercase
145
142
#[ stable( feature = "ascii" , since = "1.9.0" ) ]
146
143
fn make_ascii_lowercase ( & mut self ) ;
147
144
}
0 commit comments