@@ -157,8 +157,6 @@ pub trait StrMatcherConfigurator<ExpectedT> {
157
157
/// When all other configuration options are left as the defaults, this is
158
158
/// equivalent to invoking [`str::trim_start`] on both the expected and
159
159
/// actual value.
160
- ///
161
- /// [`str::trim_start`]: https://doc.rust-lang.org/std/primitive.str.html#method.trim_start
162
160
fn ignoring_leading_whitespace ( self ) -> StrMatcher < ExpectedT > ;
163
161
164
162
/// Configures the matcher to ignore any trailing whitespace in either the
@@ -181,8 +179,6 @@ pub trait StrMatcherConfigurator<ExpectedT> {
181
179
/// When all other configuration options are left as the defaults, this is
182
180
/// equivalent to invoking [`str::trim_end`] on both the expected and
183
181
/// actual value.
184
- ///
185
- /// [`str::trim_end`]: https://doc.rust-lang.org/std/primitive.str.html#method.trim_end
186
182
fn ignoring_trailing_whitespace ( self ) -> StrMatcher < ExpectedT > ;
187
183
188
184
/// Configures the matcher to ignore both leading and trailing whitespace in
@@ -209,8 +205,6 @@ pub trait StrMatcherConfigurator<ExpectedT> {
209
205
/// When all other configuration options are left as the defaults, this is
210
206
/// equivalent to invoking [`str::trim`] on both the expected and actual
211
207
/// value.
212
- ///
213
- /// [`str::trim`]: https://doc.rust-lang.org/std/primitive.str.html#method.trim
214
208
fn ignoring_outer_whitespace ( self ) -> StrMatcher < ExpectedT > ;
215
209
216
210
/// Configures the matcher to ignore ASCII case when comparing values.
@@ -235,8 +229,6 @@ pub trait StrMatcherConfigurator<ExpectedT> {
235
229
///
236
230
/// This is **not guaranteed** to match strings with differing upper/lower
237
231
/// case characters outside of the codepoints 0-127 covered by ASCII.
238
- ///
239
- /// [`str::eq_ignore_ascii_case`]: https://doc.rust-lang.org/std/primitive.str.html#method.eq_ignore_ascii_case
240
232
fn ignoring_ascii_case ( self ) -> StrMatcher < ExpectedT > ;
241
233
242
234
/// Configures the matcher to match only strings which otherwise satisfy the
0 commit comments