Remove blank line to fix docs for Route.Queries

The presence of a blank line was preventing the documentation from appearing in godoc.
This commit is contained in:
Peter Waller
2014-08-11 15:45:39 +01:00
parent 14cafe2851
commit 8f1a419c38

View File

@@ -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 {