summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2021-05-18 21:20:10 (GMT)
committerDino Radaković <dinor@google.com>2021-05-19 20:10:13 (GMT)
commitaa9b44a18678dfdf57089a5ac22c1edb69f35da5 (patch)
tree20e298c29aeb3023b31ebecfbeb74ddd0e1b39d1 /docs
parenteb6e9273dcf9c6535abb45306afe558aa961e3c3 (diff)
downloadgoogletest-aa9b44a18678dfdf57089a5ac22c1edb69f35da5.zip
googletest-aa9b44a18678dfdf57089a5ac22c1edb69f35da5.tar.gz
googletest-aa9b44a18678dfdf57089a5ac22c1edb69f35da5.tar.bz2
Googletest export
Fix a comment in a code snippet. PiperOrigin-RevId: 374504337
Diffstat (limited to 'docs')
-rw-r--r--docs/gmock_cook_book.md2
1 files changed, 1 insertions, 1 deletions
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 @@ 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()));
```