aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/include
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2019-08-01 13:41:23 -0400
committerGennadiy Civil <misterg@google.com>2019-08-01 16:05:57 -0400
commitda28d30191e429e233f6b837448db22847fad109 (patch)
tree7d28b090cd542c11896d6a4d39457993ec77154f /googlemock/include
parentb15335dfa7dfc1c9a436374b753720e3a366e4f2 (diff)
downloadgoogletest-da28d30191e429e233f6b837448db22847fad109.tar.gz
googletest-da28d30191e429e233f6b837448db22847fad109.tar.bz2
googletest-da28d30191e429e233f6b837448db22847fad109.zip
Googletest export
Fix ON_CALL/EXPECT_CALL example comment PiperOrigin-RevId: 261150884
Diffstat (limited to 'googlemock/include')
-rw-r--r--googlemock/include/gmock/gmock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/include/gmock/gmock.h b/googlemock/include/gmock/gmock.h
index 7096984b..99c3d787 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(...) *