aboutsummaryrefslogtreecommitdiffstats
path: root/include/gmock/gmock.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gmock/gmock.h')
-rw-r--r--include/gmock/gmock.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/gmock/gmock.h b/include/gmock/gmock.h
index 22e70287..29d9727c 100644
--- a/include/gmock/gmock.h
+++ b/include/gmock/gmock.h
@@ -39,14 +39,14 @@
// This file implements the following syntax:
//
// ON_CALL(mock_object.Method(...))
-// .WithArguments(...) ?
+// .With(...) ?
// .WillByDefault(...);
//
-// where WithArguments() is optional and WillByDefault() must appear
-// exactly once.
+// where With() is optional and WillByDefault() must appear exactly
+// once.
//
// EXPECT_CALL(mock_object.Method(...))
-// .WithArguments(...) ?
+// .With(...) ?
// .Times(...) ?
// .InSequence(...) *
// .WillOnce(...) *