fix: typo codespelling comment

This commit is contained in:
slowy07
2021-07-24 17:38:47 +07:00
parent 96f4ce02a3
commit 2f3e2e39cc
6 changed files with 8 additions and 8 deletions

View File

@@ -4950,7 +4950,7 @@ Pair(FirstMatcher first_matcher, SecondMatcher second_matcher) {
namespace no_adl {
// Conditional() creates a matcher that conditionally uses either the first or
// second matcher provided. For example, we could create an `equal if, and only
// if' matcher using the Conditonal wrapper as follows:
// if' matcher using the Conditional wrapper as follows:
//
// EXPECT_THAT(result, Conditional(condition, Eq(expected), Ne(expected)));
template <typename MatcherTrue, typename MatcherFalse>