From 3930519979014a10d06c3f78cd1589c8e7a0fb72 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 23 Aug 2021 23:16:59 +0200 Subject: [PATCH] Fix typos --- renderer.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/renderer.go b/renderer.go index 1abe76d..5cb0163 100644 --- a/renderer.go +++ b/renderer.go @@ -11,8 +11,8 @@ type renderer interface { // Stop the renderer without doing any final rendering. kill() - // Write a frame to the renderer. The renderer can write this data to ouput - // at its discretion. + // Write a frame to the renderer. The renderer can write this data to + // output at its discretion. write(string) // Request a full re-render. @@ -21,7 +21,7 @@ type renderer interface { // Whether or not the alternate screen buffer is enabled. altScreen() bool - // Record internally that the alternate screen buffer is enabled. This does - // should not actually toggle the alternate screen buffer. + // Record internally that the alternate screen buffer is enabled. This + // does not actually toggle the alternate screen buffer. setAltScreen(bool) }