fix typos

This commit is contained in:
Krystian Kuzniarek
2019-07-26 11:48:08 +02:00
parent 2134e3fd85
commit bf6df7eaee
42 changed files with 228 additions and 228 deletions

View File

@@ -857,12 +857,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);
```