From 04a79835ae36db13cbcc39e8420082a48549a42a Mon Sep 17 00:00:00 2001 From: Christopher Pfohl Date: Thu, 29 Aug 2013 12:05:40 -0400 Subject: [PATCH] Add "of" like the rest of the function docstrings --- route.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/route.go b/route.go index cb538ea..7766254 100644 --- a/route.go +++ b/route.go @@ -328,7 +328,7 @@ func (m schemeMatcher) Match(r *http.Request, match *RouteMatch) bool { } // Schemes adds a matcher for URL schemes. -// It accepts a sequence schemes to be matched, e.g.: "http", "https". +// It accepts a sequence of schemes to be matched, e.g.: "http", "https". func (r *Route) Schemes(schemes ...string) *Route { for k, v := range schemes { schemes[k] = strings.ToLower(v)