diff options
author | Abseil Team <absl-team@google.com> | 2019-08-01 17:41:23 (GMT) |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2019-08-01 20:05:57 (GMT) |
commit | da28d30191e429e233f6b837448db22847fad109 (patch) | |
tree | 7d28b090cd542c11896d6a4d39457993ec77154f | |
parent | b15335dfa7dfc1c9a436374b753720e3a366e4f2 (diff) | |
download | googletest-da28d30191e429e233f6b837448db22847fad109.zip googletest-da28d30191e429e233f6b837448db22847fad109.tar.gz googletest-da28d30191e429e233f6b837448db22847fad109.tar.bz2 |
Googletest export
Fix ON_CALL/EXPECT_CALL example comment
PiperOrigin-RevId: 261150884
-rw-r--r-- | googlemock/include/gmock/gmock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/include/gmock/gmock.h b/googlemock/include/gmock/gmock.h index 7096984..99c3d78 100644 --- a/googlemock/include/gmock/gmock.h +++ b/googlemock/include/gmock/gmock.h @@ -39,14 +39,14 @@ // This file implements the following syntax: // -// ON_CALL(mock_object.Method(...)) +// ON_CALL(mock_object, Method(...)) // .With(...) ? // .WillByDefault(...); // // where With() is optional and WillByDefault() must appear exactly // once. // -// EXPECT_CALL(mock_object.Method(...)) +// EXPECT_CALL(mock_object, Method(...)) // .With(...) ? // .Times(...) ? // .InSequence(...) * |