From f2a6eea3e4308e10bd783779e3d9fe99d4fe5295 Mon Sep 17 00:00:00 2001 From: harveer07 <71729199+harveer07@users.noreply.github.com> Date: Wed, 27 Jul 2022 20:06:47 -0700 Subject: [PATCH] Update README.md grammar errors have been revised --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f231c1310..8ef4ca776 100644 --- a/README.md +++ b/README.md @@ -39,14 +39,14 @@ Moq also is the first and only library so far to provide Linq to Mocks, so that // Simply assert the returned state: Assert.True(download); - // If you really want to go beyond state testing and want to + // If you want to go beyond state testing and want to // verify the mock interaction instead... Mock.Get(lovable).Verify(library => library.DownloadExists("2.0.0.0")); ``` You can think of Linq to Mocks as "from the universe of mocks, give me one whose behavior matches this expression". -Checkout the [Quickstart](https://github.com/Moq/moq4/wiki/Quickstart) for more examples! +Check out the [Quickstart](https://github.com/Moq/moq4/wiki/Quickstart) for more examples! ## What?