Skip to content

Commit 0f2f0c7

Browse files
hovinenbcopybara-github
authored andcommitted
Remove some URL references from the documentation.
These were to methods in the primitive type `str`, so the references resolve correctly on their own. PiperOrigin-RevId: 527812163
1 parent bd52c9c commit 0f2f0c7

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

googletest/src/matchers/str_matcher.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,6 @@ pub trait StrMatcherConfigurator<ExpectedT> {
157157
/// When all other configuration options are left as the defaults, this is
158158
/// equivalent to invoking [`str::trim_start`] on both the expected and
159159
/// actual value.
160-
///
161-
/// [`str::trim_start`]: https://doc.rust-lang.org/std/primitive.str.html#method.trim_start
162160
fn ignoring_leading_whitespace(self) -> StrMatcher<ExpectedT>;
163161

164162
/// Configures the matcher to ignore any trailing whitespace in either the
@@ -181,8 +179,6 @@ pub trait StrMatcherConfigurator<ExpectedT> {
181179
/// When all other configuration options are left as the defaults, this is
182180
/// equivalent to invoking [`str::trim_end`] on both the expected and
183181
/// actual value.
184-
///
185-
/// [`str::trim_end`]: https://doc.rust-lang.org/std/primitive.str.html#method.trim_end
186182
fn ignoring_trailing_whitespace(self) -> StrMatcher<ExpectedT>;
187183

188184
/// Configures the matcher to ignore both leading and trailing whitespace in
@@ -209,8 +205,6 @@ pub trait StrMatcherConfigurator<ExpectedT> {
209205
/// When all other configuration options are left as the defaults, this is
210206
/// equivalent to invoking [`str::trim`] on both the expected and actual
211207
/// value.
212-
///
213-
/// [`str::trim`]: https://doc.rust-lang.org/std/primitive.str.html#method.trim
214208
fn ignoring_outer_whitespace(self) -> StrMatcher<ExpectedT>;
215209

216210
/// Configures the matcher to ignore ASCII case when comparing values.
@@ -235,8 +229,6 @@ pub trait StrMatcherConfigurator<ExpectedT> {
235229
///
236230
/// This is **not guaranteed** to match strings with differing upper/lower
237231
/// 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
240232
fn ignoring_ascii_case(self) -> StrMatcher<ExpectedT>;
241233

242234
/// Configures the matcher to match only strings which otherwise satisfy the

0 commit comments

Comments
 (0)