From 6ff6405ae42a3e01f638eb58336501c1218bc1fa Mon Sep 17 00:00:00 2001 From: Kevin Goslar Date: Tue, 9 Jan 2024 06:45:47 -0600 Subject: [PATCH] Fix grammar in 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 701f1e2..259df4e 100644 --- a/tutorials/commands/README.md +++ b/tutorials/commands/README.md @@ -165,7 +165,7 @@ func (m model) View() string { The only thing left to do is run the program, so let's do that! Our initial model doesn't need any data at all in this case, we just initialize it with -as a `struct` with defaults. +a `model` struct with default values. ```go func main() {