Fix typos

This commit is contained in:
Christian Muehlhaeuser 2021-08-23 23:16:59 +02:00
parent 27ba7e7aa1
commit 3930519979
No known key found for this signature in database
GPG Key ID: 3CF9FA45CA1EBB7E
1 changed files with 4 additions and 4 deletions

View File

@ -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)
}