From 3dc5f3d687b419c49e312afcfcfb2f08330a93f2 Mon Sep 17 00:00:00 2001 From: Tiago Cesar Katcipis Date: Thu, 22 Aug 2024 05:42:18 +0200 Subject: [PATCH] Fix docs typo (#219) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34ce210..f83a702 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ The mocked structure implements the interface, where each method calls the assoc * Name arguments in the interface for a better experience * Use closured variables inside your test function to capture details about the calls to the methods * Use `.MethodCalls()` to track the calls -* Use `.ResetCalls()` to reset calls within an invidual mock's context +* Use `.ResetCalls()` to reset calls within an individual mock's context * Use `go:generate` to invoke the `moq` command * If Moq fails with a `go/format` error, it indicates the generated code was not valid. You can run the same command with `-fmt noop` to print the generated source code without attempting to format it.