Fix typos

This commit is contained in:
Christian Muehlhaeuser
2021-08-23 23:16:59 +02:00
parent 27ba7e7aa1
commit 3930519979

View File

@@ -11,8 +11,8 @@ type renderer interface {
// Stop the renderer without doing any final rendering. // Stop the renderer without doing any final rendering.
kill() kill()
// Write a frame to the renderer. The renderer can write this data to ouput // Write a frame to the renderer. The renderer can write this data to
// at its discretion. // output at its discretion.
write(string) write(string)
// Request a full re-render. // Request a full re-render.
@@ -21,7 +21,7 @@ type renderer interface {
// Whether or not the alternate screen buffer is enabled. // Whether or not the alternate screen buffer is enabled.
altScreen() bool altScreen() bool
// Record internally that the alternate screen buffer is enabled. This does // Record internally that the alternate screen buffer is enabled. This
// should not actually toggle the alternate screen buffer. // does not actually toggle the alternate screen buffer.
setAltScreen(bool) setAltScreen(bool)
} }