From 3b72c219d0d32ab024005c9e81c042296d3b2574 Mon Sep 17 00:00:00 2001 From: Eric Mutta Date: Thu, 11 Sep 2025 04:05:14 +0300 Subject: [PATCH] Fix typo in received calls documentation This: > ...which the arguments differed... Should read: > ...which **of** the arguments differed... --- docs/help/received-calls/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/help/received-calls/index.md b/docs/help/received-calls/index.md index 9b952da1..3cb2e3c1 100644 --- a/docs/help/received-calls/index.md +++ b/docs/help/received-calls/index.md @@ -31,7 +31,7 @@ public void Should_execute_command() { } ``` -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. +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. ## Check a call was not received NSubstitute can also make sure a call was not received using the `DidNotReceive()` extension method.