Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/googletest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2021-03-10 05:06:14 +0300
committerDino Radaković <dinor@google.com>2021-03-10 19:49:41 +0300
commite8512bc38c4c0060858c3306b0660a3f126aee30 (patch)
tree275b1a9f3776a3ad3b3c18d31698e232e8f80471
parent861d535e2595894c7a214f05c1578d964a617643 (diff)
Googletest export
Add missing period and use "that" in restrictive clause. PiperOrigin-RevId: 361941663
-rw-r--r--docs/gmock_for_dummies.md4
1 files 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