| Index: testing/gmock/include/gmock/gmock.h
|
| diff --git a/testing/gmock/include/gmock/gmock.h b/testing/gmock/include/gmock/gmock.h
|
| index 22e7028700e95037dc916102b55f3d0de4530d60..29d9727cba3b23aca21f50dbfa335bf5f1ac30d2 100644
|
| --- a/testing/gmock/include/gmock/gmock.h
|
| +++ b/testing/gmock/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(...) *
|
|
|