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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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