From 9e09a3ac1aa6ca4f2554162aed141d7520b32996 Mon Sep 17 00:00:00 2001 From: Rappie Date: Thu, 18 Jul 2024 14:03:19 +0200 Subject: [PATCH] Fix grammar (#1243) --- src/cheatcodes/expect-call.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.