From 9775245c4ee2ab18ee9d0030f1aead5b27547c3b Mon Sep 17 00:00:00 2001 From: Donovan Brown Date: Tue, 21 Jul 2020 17:51:07 -0500 Subject: [PATCH] Fix typo in help. Changed "was" to "way". --- docs/help/_posts/2010-02-01-set-return-value.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/help/_posts/2010-02-01-set-return-value.markdown b/docs/help/_posts/2010-02-01-set-return-value.markdown index 6827910f9..88df0ab9c 100644 --- a/docs/help/_posts/2010-02-01-set-return-value.markdown +++ b/docs/help/_posts/2010-02-01-set-return-value.markdown @@ -40,7 +40,7 @@ Assert.AreNotEqual(calculator.Add(3, 6), 3); ``` ## For properties -The return value for a property can be set in the same was as for a method, using `Returns()`. You can also just use plain old property setters for read/write properties; they'll behave just the way you expect them to. +The return value for a property can be set in the same way as for a method, using `Returns()`. You can also just use plain old property setters for read/write properties; they'll behave just the way you expect them to. ```csharp calculator.Mode.Returns("DEC");