From 2fbf1ef9e47b1e48c829d81299ff7bae6f1cf361 Mon Sep 17 00:00:00 2001 From: Preston Locke Date: Thu, 31 Oct 2024 16:31:54 -0500 Subject: [PATCH] OMG golangci-lint, PLEASE --- hello.go | 1 + 1 file changed, 1 insertion(+) diff --git a/hello.go b/hello.go index 3e9f9b2..3aa8155 100644 --- a/hello.go +++ b/hello.go @@ -14,5 +14,6 @@ func Hello(name string) string { if name == "" { return "Hello" } + return fmt.Sprintf("Hello %s", strings.ToLower(name)) }