Skip to content

Commit

Permalink
Revert incorrect update.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 609387046
Change-Id: I03e42c39011fc7e9715f896591a44ebede1933b2
  • Loading branch information
Abseil Team authored and Copybara-Service committed Feb 22, 2024
1 parent db38b59 commit 9d43b27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/reference/mocking.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
.WillRepeatedly(action) // Can be used any number of times
.WillOnce(action) // Can be used at most once
.WillOnce(action) // Can be used any number of times
.WillRepeatedly(action) // Can be used at most once
.RetiresOnSaturation(); // Can be used at most once
```

Expand Down

0 comments on commit 9d43b27

Please sign in to comment.