Commit aa9b44a1 by Abseil Team Committed by Dino Radaković

Googletest export

Fix a comment in a code snippet. PiperOrigin-RevId: 374504337
parent eb6e9273
...@@ -3363,7 +3363,7 @@ or, ...@@ -3363,7 +3363,7 @@ or,
```cpp ```cpp
using ::testing::Not; 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_expression, IsDivisibleBy7());
EXPECT_THAT(some_other_expression, Not(IsDivisibleBy7())); EXPECT_THAT(some_other_expression, Not(IsDivisibleBy7()));
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment