From bed37a46c7706129bb9cbb0a7672868c34337767 Mon Sep 17 00:00:00 2001 From: Carl Jackson Date: Tue, 17 Jun 2014 09:42:54 -0700 Subject: [PATCH] Reformat comment in docs --- web/web.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/web.go b/web/web.go index da0b06a..a69e246 100644 --- a/web/web.go +++ b/web/web.go @@ -56,7 +56,8 @@ use the Env parameter to pass data to other middleware and to the final handler: handler := func(w http.ResponseWriter, r *http.Request) { cookie, err := r.Cookie("user") if err == nil { - //Consider using the middleware EnvInit instead of repeating the below check + // Consider using the middleware EnvInit instead + // of repeating the below check if c.Env == nil { c.Env = make(map[string]interface{}) }