From da28d30191e429e233f6b837448db22847fad109 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Thu, 1 Aug 2019 13:41:23 -0400 Subject: Googletest export Fix ON_CALL/EXPECT_CALL example comment PiperOrigin-RevId: 261150884 --- googlemock/include/gmock/gmock.h | 4 ++-- 1 file 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(...) * -- cgit v0.12