Skip to content

Commit 36a4b9a

Browse files
hovinenbcopybara-github
authored andcommitted
Update the links in the rustdoc for ConjunctionMatcher and DisjunctionMatcher.
These still pointed to the now removed extension traits `AndMatcherExt` and `OrMatcherExt`. This slipped past the documentation check because the Rustdoc for those two structures is not actually built, their being an internal API. PiperOrigin-RevId: 532049983
1 parent d9c63a2 commit 36a4b9a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

googletest/src/matchers/conjunction_matcher.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use crate::matcher::{Matcher, MatcherResult};
1616
use std::{fmt::Debug, marker::PhantomData};
1717

18-
/// Matcher created by [`AndMatcherExt::and`].
18+
/// Matcher created by [`Matcher::and`].
1919
///
2020
/// **For internal use only. API stablility is not guaranteed!**
2121
#[doc(hidden)]

googletest/src/matchers/disjunction_matcher.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use crate::matcher::{Matcher, MatcherResult};
1616
use std::{fmt::Debug, marker::PhantomData};
1717

18-
/// Matcher created by [`OrMatcherExt::or`].
18+
/// Matcher created by [`Matcher::or`].
1919
///
2020
/// **For internal use only. API stablility is not guaranteed!**
2121
#[doc(hidden)]

0 commit comments

Comments
 (0)