Fix typo in README (#107)

This commit is contained in:
Vegard Løkken 2019-11-03 08:54:11 +01:00 committed by Mat Ryer
parent 5e2b3bdd91
commit ea57f91120

View File

@ -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) {