From 482bd86963754fe2bae6a005508153573388487f Mon Sep 17 00:00:00 2001 From: Julian Zucker Date: Wed, 24 Jul 2019 18:27:04 -0600 Subject: [PATCH] Fix typo in http servers example --- examples/http-servers/http-servers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/http-servers/http-servers.go b/examples/http-servers/http-servers.go index 72726b4..42a83b3 100644 --- a/examples/http-servers/http-servers.go +++ b/examples/http-servers/http-servers.go @@ -17,7 +17,7 @@ func hello(w http.ResponseWriter, req *http.Request) { // Functions serving as handlers take a // `http.ResponseWriter` and a `http.Request` as // arguments. The response writer is used to fill in the - // HTTP response. Here out simple response is just + // HTTP response. Here our simple response is just // "hello\n". fmt.Fprintf(w, "hello\n") }