Googletest export

Fix a comment in a code snippet.

PiperOrigin-RevId: 374504337
diff --git a/docs/gmock_cook_book.md b/docs/gmock_cook_book.md
index 1d07d01..1d25072 100644
--- a/docs/gmock_cook_book.md
+++ b/docs/gmock_cook_book.md
@@ -3363,7 +3363,7 @@
 ```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()));
 ```