From be911b4609565e5258801be22d0334eba3765514 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 31 Dec 2019 05:36:15 +0000 Subject: [PATCH] Fix typo in comment --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index c86b92a..1470d11 100644 --- a/main.go +++ b/main.go @@ -147,7 +147,7 @@ func execute(cmd *cobra.Command, args []string) error { for i, s := range lines { fmt.Print(strings.TrimSpace(s)) - // don't add an artifical newline after the last split + // don't add an artificial newline after the last split if i+1 < len(lines) { fmt.Println() }