forked from Mirrors/bubbletea
doc: Fix `Printf` typo (#358)
This commit is contained in:
parent
ca32c4c628
commit
db4f6474c9
7
tea.go
7
tea.go
|
@ -710,11 +710,8 @@ func (p *Program) RestoreTerminal() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// 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
|
||||||
// will persist across renders by the Program.
|
// and will persist across renders by the Program.
|
||||||
//
|
|
||||||
// Unlike fmt.Printf (but similar to log.Printf) the message will be print on
|
|
||||||
// its own line.
|
|
||||||
//
|
//
|
||||||
// If the altscreen is active no output will be printed.
|
// If the altscreen is active no output will be printed.
|
||||||
func (p *Program) Println(args ...interface{}) {
|
func (p *Program) Println(args ...interface{}) {
|
||||||
|
|
Loading…
Reference in New Issue