From aa9b44a18678dfdf57089a5ac22c1edb69f35da5 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Tue, 18 May 2021 14:20:10 -0700 Subject: [PATCH] Googletest export Fix a comment in a code snippet. PiperOrigin-RevId: 374504337 --- docs/gmock_cook_book.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gmock_cook_book.md b/docs/gmock_cook_book.md index 1d07d011..1d25072a 100644 --- a/docs/gmock_cook_book.md +++ b/docs/gmock_cook_book.md @@ -3363,7 +3363,7 @@ or, ```cpp using ::testing::Not; ... - // Verifies that two values are divisible by 7. + // Verifies that a value is divisible by 7 and the other is not. EXPECT_THAT(some_expression, IsDivisibleBy7()); EXPECT_THAT(some_other_expression, Not(IsDivisibleBy7())); ```