From 24e63b3a9d7382256901e6cb21d15b6bf9428c68 Mon Sep 17 00:00:00 2001 From: Eric Mutta Date: Thu, 11 Sep 2025 03:30:23 +0300 Subject: [PATCH] Fix typo in return value documentation This: > Read on for other **approachs** Should read: > Read on for other **approaches** --- docs/help/set-return-value/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/help/set-return-value/index.md b/docs/help/set-return-value/index.md index 72728dfb..9eb077ca 100644 --- a/docs/help/set-return-value/index.md +++ b/docs/help/set-return-value/index.md @@ -51,4 +51,4 @@ Assert.That("HEX", Is.EqualTo(calculator.Mode)); ## More ways of setting return values -This covers the very basics of setting a return value, but NSubstitute can do much more. Read on for other approachs, including [matching specific arguments](/help/return-for-args), [ignoring arguments](/help/return-for-any-args), using [functions to calculate return values](/help/return-from-function) and returning [multiple results](/help/multiple-returns). \ No newline at end of file +This covers the very basics of setting a return value, but NSubstitute can do much more. Read on for other approaches, including [matching specific arguments](/help/return-for-args), [ignoring arguments](/help/return-for-any-args), using [functions to calculate return values](/help/return-from-function) and returning [multiple results](/help/multiple-returns).