From 3aee878447b3689c33cfef1f1377a410d7c5d0da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Tue, 16 May 2017 16:45:03 +0100 Subject: [PATCH] Fix bad call to Println --- test/test-app/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-app/main.go b/test/test-app/main.go index 094c300..04c9655 100644 --- a/test/test-app/main.go +++ b/test/test-app/main.go @@ -10,7 +10,7 @@ const ( ) func HelloWorld(w http.ResponseWriter, r *http.Request) { - fmt.Println(w, "Hello, world !") + fmt.Fprintln(w, "Hello, world !") } func main() {