From 2b9d4e301545f42a1c51157902f2f6b69a10d97a Mon Sep 17 00:00:00 2001 From: bashbunni Date: Tue, 19 Jul 2022 16:22:33 -0700 Subject: [PATCH] chore: fix Println typo --- standard_renderer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/standard_renderer.go b/standard_renderer.go index 2d12271..d2bc387 100644 --- a/standard_renderer.go +++ b/standard_renderer.go @@ -483,10 +483,10 @@ type printLineMessage struct { 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. // -// 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. // // If the altscreen is active no output will be printed.