From f20aa485db8e78ef381b5b2a4706dfccb2a7cd37 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Mon, 5 Oct 2020 13:42:19 -0400 Subject: [PATCH] Fix typo in command tutorial --- 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 25492aa..e126b32 100644 --- a/tutorials/commands/README.md +++ b/tutorials/commands/README.md @@ -112,7 +112,7 @@ func update(msg tea.Msg, mdl tea.Model) (tea.Model, tea.Cmd) { case statusMsg: // The server returned a status message. Save it to our model. Also - // tell the Bubble Tea runtime we ant to exit because we have nothing + // tell the Bubble Tea runtime we want to exit because we have nothing // else to do. We'll still be able to render a final view with our // status message. m.status = int(msg)