diff options
author | Abseil Team <absl-team@google.com> | 2022-11-23 23:57:21 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-11-23 23:57:54 (GMT) |
commit | e68764c147ea0dac1e8811925c531d937396878e (patch) | |
tree | 016905fc39b58c3bdd67d710468b1ce58159da5b /docs/gmock_cook_book.md | |
parent | 519beb0e52c842729b4b53731d27c0e0c32ab4a2 (diff) | |
download | googletest-e68764c147ea0dac1e8811925c531d937396878e.zip googletest-e68764c147ea0dac1e8811925c531d937396878e.tar.gz googletest-e68764c147ea0dac1e8811925c531d937396878e.tar.bz2 |
This commit fixes a minor verb conjugation error in gmock_cook_book.md.
PiperOrigin-RevId: 490601453
Change-Id: I733b2ed8740b1c809dddb166a42993b869198469
Diffstat (limited to 'docs/gmock_cook_book.md')
-rw-r--r-- | docs/gmock_cook_book.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/gmock_cook_book.md b/docs/gmock_cook_book.md index 693201e..59aa9fc 100644 --- a/docs/gmock_cook_book.md +++ b/docs/gmock_cook_book.md @@ -1904,7 +1904,7 @@ using testing::ReturnPointee; ### Combining Actions Want to do more than one thing when a function is called? That's fine. `DoAll()` -allow you to do sequence of actions every time. Only the return value of the +allows you to do a sequence of actions every time. Only the return value of the last action in the sequence will be used. ```cpp |