From e634ad534177e1b631d2fdfccd5ad9314b833c3d Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Wed, 19 Aug 2020 23:54:42 +0200 Subject: [PATCH] Fix typo --- tea.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tea.go b/tea.go index 83c4687..61fffe8 100644 --- a/tea.go +++ b/tea.go @@ -49,7 +49,7 @@ func Batch(cmds ...Cmd) Cmd { type Init func() (Model, Cmd) // Update is called when a message is received. Use it to inspect messages and, -// in repsonse, update the model and/or send a command. +// in response, update the model and/or send a command. type Update func(Msg, Model) (Model, Cmd) // View renders the program's UI, which is just a string. The view is rendered