Fix typo in gmock_cook_book.md

This commit is contained in:
Anton Sosnin
2023-07-19 18:08:41 +03:00
committed by GitHub
parent d66ce58510
commit f014396910

View File

@@ -2640,8 +2640,8 @@ action will exhibit different behaviors. Example:
.WillRepeatedly(IncrementCounter(0));
foo.DoThis(); // Returns 1.
foo.DoThis(); // Returns 2.
foo.DoThat(); // Returns 1 - Blah() uses a different
// counter than Bar()'s.
foo.DoThat(); // Returns 1 - DoThat() uses a different
// counter than DoThis()'s.
```
versus