From bd94afed26bb8c94d5a94de9aed3619a98731a6d Mon Sep 17 00:00:00 2001 From: Patricio Whittingslow Date: Sat, 25 Jul 2026 22:12:32 -0300 Subject: [PATCH] small nit --- examples/http-linux/main-httplinux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/http-linux/main-httplinux.go b/examples/http-linux/main-httplinux.go index 07e6df6..6cc0659 100644 --- a/examples/http-linux/main-httplinux.go +++ b/examples/http-linux/main-httplinux.go @@ -22,7 +22,7 @@ const ( func main() { if err := run(); err != nil { - println("Error: ", err) + println("Error:", err.Error()) os.Exit(1) } println("DONE")