From 25eeb6f215496cdb1be473f7f02c21445696c4e8 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Fri, 11 Oct 2024 15:19:28 +0300 Subject: [PATCH] refactor: Replace 'println' with 'fmt.Println' --- example/tokenauth/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/tokenauth/main.go b/example/tokenauth/main.go index 71d4c20c31a..0c8f39f848c 100644 --- a/example/tokenauth/main.go +++ b/example/tokenauth/main.go @@ -22,7 +22,7 @@ import ( func main() { fmt.Print("GitHub Token: ") token, _ := term.ReadPassword(int(os.Stdin.Fd())) - println() + fmt.Println() ctx := context.Background() client := github.NewClient(nil).WithAuthToken(string(token))