Minor documentation correction.

PiperOrigin-RevId: 593126348
Change-Id: I78e12ab5dd2e5acc69b21250bdb04e62990b6309
This commit is contained in:
Abseil Team 2023-12-22 08:50:31 -08:00 committed by Copybara-Service
parent cde9a745a6
commit 96eadf659f

View File

@ -81,8 +81,8 @@ EXPECT_CALL(mock_object, method_name(matchers...))
.Times(cardinality) // Can be used at most once
.InSequence(sequences...) // Can be used any number of times
.After(expectations...) // Can be used any number of times
.WillOnce(action) // Can be used any number of times
.WillRepeatedly(action) // Can be used at most once
.WillRepeatedly(action) // Can be used any number of times
.WillOnce(action) // Can be used at most once
.RetiresOnSaturation(); // Can be used at most once
```