diff --git a/src/cheatcodes/expect-call.md b/src/cheatcodes/expect-call.md index 11d3087da..e147bbad4 100644 --- a/src/cheatcodes/expect-call.md +++ b/src/cheatcodes/expect-call.md @@ -27,7 +27,7 @@ function expectCall( ### Description -Expects that a call to a specified address `callee`, where the call data either strictly or loosely matches `data`. The cheatcode can be called in two ways: +Expects a call to a specified address `callee`, where the call data either strictly or loosely matches `data`. The cheatcode can be called in two ways: - If no `count` parameter is specified, the call will be expected to be made at least the amount of times the cheatcode was called. For the same calldata, you cannot call the cheatcode with no `count` and then pass in a `count` parameter. - If `count` is specified, the call will be expected to be made strictly `count` times. For the same calldata, the `count` value cannot be overwritten with another cheatcode call, nor it can be increment by calling the cheatcode without a `count` parameter.