From ea57f9112005cd46a908759db1288ee7292703d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vegard=20L=C3=B8kken?= Date: Sun, 3 Nov 2019 08:54:11 +0100 Subject: [PATCH] Fix typo in README (#107) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 06137df..69961bc 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Mocking interfaces is a nice way to write unit tests where you can easily contro Moq creates a struct that has a function field for each method, which you can declare in your test code. -This this example, Moq generated the `EmailSenderMock` type: +In this example, Moq generated the `EmailSenderMock` type: ```go func TestCompleteSignup(t *testing.T) {