From a6deb077c5ff7596ab482041e3b171094590cd82 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Wed, 17 Jun 2020 19:43:06 -0400 Subject: [PATCH] Adjust comments --- tea.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tea.go b/tea.go index e18edd3..0b7582b 100644 --- a/tea.go +++ b/tea.go @@ -59,8 +59,8 @@ type quitMsg struct{} // can send a batchMsg with Batch. type batchMsg []Cmd -// WindowSizeMsg is used to report on the terminal size. It's fired once initially -// and then on every terminal resize. +// WindowSizeMsg is used to report on the terminal size. It's fired once +// initially and then on every terminal resize. type WindowSizeMsg struct { Width int Height int @@ -171,7 +171,7 @@ func (p *Program) Start() error { continue } - // Process any internal messages for the renderer + // Process internal messages for the renderer mrRenderer.handleMessages(msg) model, cmd = p.update(msg, model) // run update