Skip to content

Commit 7b1f13c

Browse files
authored
Fix typo in received calls documentation (#904)
This: > ...which the arguments differed... Should read: > ...which **of** the arguments differed...
1 parent 72074df commit 7b1f13c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/help/received-calls/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void Should_execute_command() {
3131
}
3232
```
3333

34-
In this case `command` did receive a call to `Execute()`, and so will complete successfully. If `Execute()` has not been received NSubstitute will throw a `ReceivedCallsException` and let you know what call was expected and with which arguments, as well as listing actual calls to that method and which the arguments differed.
34+
In this case `command` did receive a call to `Execute()`, and so will complete successfully. If `Execute()` has not been received NSubstitute will throw a `ReceivedCallsException` and let you know what call was expected and with which arguments, as well as listing actual calls to that method and which of the arguments differed.
3535

3636
## Check a call was not received
3737
NSubstitute can also make sure a call was not received using the `DidNotReceive()` extension method.

0 commit comments

Comments
 (0)