From b8ebd61beb6f9ce30e4a8ce2765fe59d472e126f Mon Sep 17 00:00:00 2001 From: Souvik Haldar Date: Sun, 17 Feb 2019 19:14:45 +0530 Subject: [PATCH] It --> If --- route.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/route.go b/route.go index 16a7cdf4..8479c68c 100644 --- a/route.go +++ b/route.go @@ -383,7 +383,7 @@ func (r *Route) PathPrefix(tpl string) *Route { // The above route will only match if the URL contains the defined queries // values, e.g.: ?foo=bar&id=42. // -// It the value is an empty string, it will match any value if the key is set. +// If the value is an empty string, it will match any value if the key is set. // // Variables can define an optional regexp pattern to be matched: //