From dc7063bbecc9ac5d4e5a165e12df66c9ec30491e Mon Sep 17 00:00:00 2001 From: mikecoop83 Date: Sun, 21 Nov 2021 14:14:00 -0500 Subject: [PATCH] Remove extra word in commands README --- tutorials/commands/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/commands/README.md b/tutorials/commands/README.md index 5954acf..ad4736c 100644 --- a/tutorials/commands/README.md +++ b/tutorials/commands/README.md @@ -82,7 +82,7 @@ func (e errMsg) Error() string { return e.err.Error() } ``` And notice that we've defined two new `Msg` types. They can be any type, even -an empty struct. We'll come back to them later later in our update function. +an empty struct. We'll come back to them later in our update function. First, let's write our initialization function. ## The Initialization Method