From faf2028a338aa89098068ed9fd802a2143e7e49b Mon Sep 17 00:00:00 2001 From: nautical-exact <167017548+nautical-exact@users.noreply.github.com> Date: Sun, 7 Jun 2026 13:58:02 -0400 Subject: [PATCH] fix typo --- docs/gmock_cook_book.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gmock_cook_book.md b/docs/gmock_cook_book.md index 49e49d510..b7530b247 100644 --- a/docs/gmock_cook_book.md +++ b/docs/gmock_cook_book.md @@ -2950,7 +2950,7 @@ MockFoo::~MockFoo() {} // These macros expand to the actual definitions of the mock methods. // For each DECLARE_MOCK_METHOD call in your class body, you need a -// corresponding DEFINE_MOCK_METHOD call in your .cc file. +// corresponding DEFINE_MOCK_METHOD call in your .cc file. DEFINE_MOCK_METHOD(MockFoo, int, DoThis, (), (override)); DEFINE_MOCK_METHOD(MockFoo, bool, DoThat, (const char* str), (override)); ... more mock methods ...