Skip to content

Commit

Permalink
Minor documentation correction.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 593126348
Change-Id: I78e12ab5dd2e5acc69b21250bdb04e62990b6309
  • Loading branch information
Abseil Team authored and copybara-github committed Dec 22, 2023
1 parent cde9a74 commit 96eadf6
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
.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
```

Expand Down

0 comments on commit 96eadf6

Please sign in to comment.