diff options
author | Abseil Team <absl-team@google.com> | 2021-12-02 15:43:48 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2021-12-02 15:44:32 (GMT) |
commit | 1b2606425c4040cacadaa22689423ec0a29f316d (patch) | |
tree | 2f1cc125a496fc6597081de6e6d978e84dc1b4e7 | |
parent | bb9216085fbbf193408653ced9e73c61e7766e80 (diff) | |
download | googletest-1b2606425c4040cacadaa22689423ec0a29f316d.zip googletest-1b2606425c4040cacadaa22689423ec0a29f316d.tar.gz googletest-1b2606425c4040cacadaa22689423ec0a29f316d.tar.bz2 |
Fix typo in GoogleMock Cookbook.
PiperOrigin-RevId: 413674665
Change-Id: I466f87348390f42434a70f183efdf0557be9dddd
-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 b41c5b9..9494f12 100644 --- a/docs/gmock_cook_book.md +++ b/docs/gmock_cook_book.md @@ -1084,7 +1084,7 @@ using ::testing::Lt; ``` says that `Blah` will be called with arguments `x`, `y`, and `z` where `x < y < -z`. Note that in this example, it wasn't necessary specify the positional +z`. Note that in this example, it wasn't necessary to specify the positional matchers. As a convenience and example, gMock provides some matchers for 2-tuples, |