Skip to content

Commit e3dbee4

Browse files
Merge pull request #4115 from SunBlack:codespell
PiperOrigin-RevId: 505740434 Change-Id: I963f6a6b667a030c87f211173f578f7c35733e68
2 parents b722020 + 64e0945 commit e3dbee4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

googlemock/test/gmock-matchers-comparisons_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,7 @@ struct Type {
864864
};
865865

866866
TEST(TypedEqTest, HasSpecifiedType) {
867-
// Verfies that the type of TypedEq<T>(v) is Matcher<T>.
867+
// Verifies that the type of TypedEq<T>(v) is Matcher<T>.
868868
Type<Matcher<int>>::IsTypeOf(TypedEq<int>(5));
869869
Type<Matcher<double>>::IsTypeOf(TypedEq<double>(5));
870870
}
@@ -1530,7 +1530,7 @@ TEST(PairTest, MatchesCorrectly) {
15301530
EXPECT_THAT(p, Pair(25, "foo"));
15311531
EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o")));
15321532

1533-
// 'first' doesnt' match, but 'second' matches.
1533+
// 'first' doesn't match, but 'second' matches.
15341534
EXPECT_THAT(p, Not(Pair(42, "foo")));
15351535
EXPECT_THAT(p, Not(Pair(Lt(25), "foo")));
15361536

0 commit comments

Comments
 (0)