Remove extra word in commands README

This commit is contained in:
mikecoop83 2021-11-21 14:14:00 -05:00 committed by Christian Rocha
parent cb0a72d682
commit dc7063bbec
1 changed files with 1 additions and 1 deletions

View File

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