From d6708c0f9e15c9b336662a2a8e1c25e48eac7c50 Mon Sep 17 00:00:00 2001 From: Franklin Harding Date: Wed, 23 Oct 2019 23:13:43 -0700 Subject: [PATCH] Clarify KeepContext Go 1.7+ comment Mux doesn't build on Go < 1.7 so the comment doesn't really need to clarify anymore. --- mux.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mux.go b/mux.go index 48c4d1e..c9ba647 100644 --- a/mux.go +++ b/mux.go @@ -59,8 +59,7 @@ type Router struct { // If true, do not clear the request context after handling the request. // - // Deprecated: No effect when go1.7+ is used, since the context is stored - // on the request itself. + // Deprecated: No effect, since the context is stored on the request itself. KeepContext bool // Slice of middlewares to be called after a match is found