From 8f1a419c38688087a65a29395ac483f7b113c745 Mon Sep 17 00:00:00 2001 From: Peter Waller
Date: Mon, 11 Aug 2014 15:45:39 +0100 Subject: [PATCH] Remove blank line to fix docs for Route.Queries The presence of a blank line was preventing the documentation from appearing in godoc. --- route.go | 1 - 1 file changed, 1 deletion(-) diff --git a/route.go b/route.go index 4fb85f7..c310e66 100644 --- a/route.go +++ b/route.go @@ -326,7 +326,6 @@ func (r *Route) PathPrefix(tpl string) *Route { // - {name} matches anything until the next slash. // // - {name:pattern} matches the given regexp pattern. - func (r *Route) Queries(pairs ...string) *Route { length := len(pairs) if length%2 != 0 {