From 84caa3bf404c6a431105c1894bd7e3d9495643c4 Mon Sep 17 00:00:00 2001 From: Jonathan Lipps Date: Mon, 17 Mar 2025 17:43:33 -0700 Subject: [PATCH] Fix typo in docs mocking cheatsheet code example --- 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 ddafaaa2..d177ed38 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(); ```