From a956a03841da4f5eda29f95bbc45e1b366e81e11 Mon Sep 17 00:00:00 2001 From: Vishal Rana Date: Sun, 26 Apr 2015 15:53:37 -0700 Subject: [PATCH] Improved comment Signed-off-by: Vishal Rana --- router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router.go b/router.go index 03a99fc47..a64b8149d 100644 --- a/router.go +++ b/router.go @@ -247,7 +247,7 @@ func (r *router) Find(method, path string, ctx *Context) (h HandlerFunc, echo *E goto Up } - // Check for catch-all with empty string + // Catch-all with empty value if len(search) == 0 { goto CatchAll }