chore: fix Println typo

This commit is contained in:
bashbunni 2022-07-19 16:22:33 -07:00 committed by Christian Muehlhaeuser
parent 219ed4ed09
commit 2b9d4e3015
1 changed files with 2 additions and 2 deletions

View File

@ -483,10 +483,10 @@ type printLineMessage struct {
messageBody string messageBody string
} }
// Printf prints above the Program. This output is unmanaged by the program and // Println prints above the Program. This output is unmanaged by the program and
// will persist across renders by the Program. // will persist across renders by the Program.
// //
// Unlike fmt.Printf (but similar to log.Printf) the message will be print on // Unlike fmt.Println (but similar to log.Println) the message will be print on
// its own line. // its own line.
// //
// If the altscreen is active no output will be printed. // If the altscreen is active no output will be printed.