From 948bec34b5168796bf3fc4dbb09215baa970351a Mon Sep 17 00:00:00 2001 From: Eric Skoglund Date: Sun, 17 May 2020 06:02:54 +0200 Subject: [PATCH] docs: Remove stale text from comment. (#568) Comment for CurrentRoute claimed that setting the KeepContext option would propagate the Route even after the request. The KeepContext option is deprecated and has no effect. --- mux.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mux.go b/mux.go index c9ba6470..782a34b2 100644 --- a/mux.go +++ b/mux.go @@ -435,8 +435,7 @@ func Vars(r *http.Request) map[string]string { // CurrentRoute returns the matched route for the current request, if any. // This only works when called inside the handler of the matched route // because the matched route is stored in the request context which is cleared -// after the handler returns, unless the KeepContext option is set on the -// Router. +// after the handler returns. func CurrentRoute(r *http.Request) *Route { if rv := r.Context().Value(routeKey); rv != nil { return rv.(*Route)