Skip to content

Commit b293a60

Browse files
committed
fix typo
1 parent 4901d42 commit b293a60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

googletest/src/matchers/bool_matcher.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use crate::{
1717
matcher::{Matcher, MatcherBase, MatcherResult},
1818
};
1919

20-
/// Matcher that matches boolean value `true`.
20+
/// Matches boolean value `true`.
2121
pub fn is_true() -> BoolMatcher {
2222
BoolMatcher { expected: true }
2323
}
@@ -28,7 +28,7 @@ pub fn is_false() -> BoolMatcher {
2828
}
2929

3030

31-
/// Match a bool value or bool reference.
31+
/// Matches a bool value or bool reference.
3232
#[derive(MatcherBase)]
3333
pub struct BoolMatcher {
3434
expected: bool,

0 commit comments

Comments
 (0)