From e8512bc38c4c0060858c3306b0660a3f126aee30 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Tue, 9 Mar 2021 18:06:14 -0800 Subject: [PATCH] Googletest export Add missing period and use "that" in restrictive clause. PiperOrigin-RevId: 361941663 --- docs/gmock_for_dummies.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/gmock_for_dummies.md b/docs/gmock_for_dummies.md index 9b5bdcc8..6e41cafe 100644 --- a/docs/gmock_for_dummies.md +++ b/docs/gmock_for_dummies.md @@ -310,8 +310,8 @@ EXPECT_CALL(mock_object, non-overloaded-method) This syntax allows the test writer to specify "called with any arguments" without explicitly specifying the number or types of arguments. To avoid -unintended ambiguity, this syntax may only be used for methods which are not -overloaded +unintended ambiguity, this syntax may only be used for methods that are not +overloaded. Either form of the macro can be followed by some optional *clauses* that provide more information about the expectation. We'll discuss how each clause works in