From b0482de348ef5a47ba4393c9912359e65a1242a0 Mon Sep 17 00:00:00 2001 From: Hyuk Myeong Date: Mon, 16 Sep 2019 15:14:04 +0900 Subject: [PATCH] Update cook_book.md --- googlemock/docs/kr/cook_book.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/googlemock/docs/kr/cook_book.md b/googlemock/docs/kr/cook_book.md index e8d7b7f3..b580a057 100644 --- a/googlemock/docs/kr/cook_book.md +++ b/googlemock/docs/kr/cook_book.md @@ -2711,7 +2711,7 @@ class MatcherInterface { public: virtual ~MatcherInterface(); - // Returns true if the matcher matches x; also explains the match + // Returns true if and only if the matcher matches x; also explains the match // result to 'listener'. virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0; @@ -2842,10 +2842,11 @@ class CardinalityInterface { public: virtual ~CardinalityInterface(); - // Returns true iff call_count calls will satisfy this cardinality. + // Returns true if and only if call_count calls will satisfy this cardinality. virtual bool IsSatisfiedByCallCount(int call_count) const = 0; - // Returns true iff call_count calls will saturate this cardinality. + // Returns true if and only if call_count calls will saturate this + // cardinality. virtual bool IsSaturatedByCallCount(int call_count) const = 0; // Describes self to an ostream.