From 77f424d3ae04bf4130e489900890fa84992d9b40 Mon Sep 17 00:00:00 2001 From: Craig Jellick Date: Fri, 29 May 2015 14:16:30 -0700 Subject: [PATCH] Fix typo --- route.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/route.go b/route.go index d4f0146..00d2300 100644 --- a/route.go +++ b/route.go @@ -214,7 +214,7 @@ func (r *Route) Headers(pairs ...string) *Route { // Host adds a matcher for the URL host. // It accepts a template with zero or more URL variables enclosed by {}. -// Variables can define an optional regexp pattern to me matched: +// Variables can define an optional regexp pattern to be matched: // // - {name} matches anything until the next dot. // @@ -272,7 +272,7 @@ func (r *Route) Methods(methods ...string) *Route { // Path adds a matcher for the URL path. // It accepts a template with zero or more URL variables enclosed by {}. The // template must start with a "/". -// Variables can define an optional regexp pattern to me matched: +// Variables can define an optional regexp pattern to be matched: // // - {name} matches anything until the next slash. // @@ -323,7 +323,7 @@ func (r *Route) PathPrefix(tpl string) *Route { // // It the value is an empty string, it will match any value if the key is set. // -// Variables can define an optional regexp pattern to me matched: +// Variables can define an optional regexp pattern to be matched: // // - {name} matches anything until the next slash. //