diff options
author | Abseil Team <absl-team@google.com> | 2021-03-10 02:06:14 (GMT) |
---|---|---|
committer | Dino Radaković <dinor@google.com> | 2021-03-10 16:49:41 (GMT) |
commit | e8512bc38c4c0060858c3306b0660a3f126aee30 (patch) | |
tree | 275b1a9f3776a3ad3b3c18d31698e232e8f80471 /docs | |
parent | 861d535e2595894c7a214f05c1578d964a617643 (diff) | |
download | googletest-e8512bc38c4c0060858c3306b0660a3f126aee30.zip googletest-e8512bc38c4c0060858c3306b0660a3f126aee30.tar.gz googletest-e8512bc38c4c0060858c3306b0660a3f126aee30.tar.bz2 |
Googletest export
Add missing period and use "that" in restrictive clause.
PiperOrigin-RevId: 361941663
Diffstat (limited to 'docs')
-rw-r--r-- | docs/gmock_for_dummies.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/gmock_for_dummies.md b/docs/gmock_for_dummies.md index 9b5bdcc..6e41caf 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 |