From 5d94164456c6c842919bd2e46a56d810de36aa79 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Wed, 26 Aug 2020 15:39:30 -0400 Subject: [PATCH] Improve a comment in the command tutorial --- tutorials/commands/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorials/commands/README.md b/tutorials/commands/README.md index 9fedfb5..25492aa 100644 --- a/tutorials/commands/README.md +++ b/tutorials/commands/README.md @@ -112,9 +112,9 @@ 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 else to do. Don't worry, we'll still be able to render - // a final view with our status message. + // tell the Bubble Tea runtime we ant 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) return m, tea.Quit