From 0dbcd8d0066fef26b1268d8637e2bfc4df978e18 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Fri, 24 Jul 2026 10:01:08 -0700 Subject: [PATCH] Fix typo in docs/gmock_cheat_sheet.md Closes: #4735 PiperOrigin-RevId: 953422159 Change-Id: I6c0c227ee4a997d346091fee32bd9b23bcc760ab --- docs/gmock_cheat_sheet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gmock_cheat_sheet.md b/docs/gmock_cheat_sheet.md index 62159998b..dd63226c6 100644 --- a/docs/gmock_cheat_sheet.md +++ b/docs/gmock_cheat_sheet.md @@ -153,7 +153,7 @@ To customize the default action for functions with return type `T`, use EXPECT_NE(buzz1, buzz2); // Resets the default action for return type std::unique_ptr, - // to avoid interfere with other tests. + // to avoid interfering with other tests. DefaultValue>::Clear(); ```