diff options
author | Gennadiy Civil <misterg@google.com> | 2019-07-30 18:47:55 -0400 |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2019-07-30 18:47:55 -0400 |
commit | 9311242db422dd6f24c8e764847fe5d70d0d4859 (patch) | |
tree | 46476749af3ee455671a07764be6c54b8a065a43 /googlemock/docs/cheat_sheet.md | |
parent | 0647b90eebfbe98d7bba3aa700b65752c3695c79 (diff) | |
parent | bf6df7eaee5cfaafe2655fab143f348eba98c9af (diff) | |
download | googletest-9311242db422dd6f24c8e764847fe5d70d0d4859.tar.gz googletest-9311242db422dd6f24c8e764847fe5d70d0d4859.tar.bz2 googletest-9311242db422dd6f24c8e764847fe5d70d0d4859.zip |
Merge pull request #2356 from kuzkry:typos
PiperOrigin-RevId: 260786935
Diffstat (limited to 'googlemock/docs/cheat_sheet.md')
-rw-r--r-- | googlemock/docs/cheat_sheet.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/docs/cheat_sheet.md b/googlemock/docs/cheat_sheet.md index 6170965f..540da39e 100644 --- a/googlemock/docs/cheat_sheet.md +++ b/googlemock/docs/cheat_sheet.md @@ -886,12 +886,12 @@ you can do it earlier: using ::testing::Mock; ... // Verifies and removes the expectations on mock_obj; -// returns true iff successful. +// returns true if successful. Mock::VerifyAndClearExpectations(&mock_obj); ... // Verifies and removes the expectations on mock_obj; // also removes the default actions set by ON_CALL(); -// returns true iff successful. +// returns true if successful. Mock::VerifyAndClear(&mock_obj); ``` |