From f38004c441a2d7ba004853bb0863ff2b2571f461 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Fri, 20 Mar 2026 11:41:35 -0700 Subject: [PATCH] Fix typo in monomorphic matcher documentation. PiperOrigin-RevId: 886900324 Change-Id: I96832e8162b4631783cf0f2badf160d18d3256f8 --- 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 b53cbd59d..283a06412 100644 --- a/docs/gmock_cook_book.md +++ b/docs/gmock_cook_book.md @@ -3591,7 +3591,7 @@ and supports the following operations: bool matched = matcher.MatchAndExplain(value, maybe_os); // where `value` is of type `T` and // `maybe_os` is of type `std::ostream*`, where it can be null if the caller -// is not interested in there textual explanation. +// is not interested in the textual explanation. matcher.DescribeTo(os); matcher.DescribeNegationTo(os);