From 83462d2999d12524cc1b3265cf0b723e7967fce2 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Sun, 18 Oct 2020 19:39:31 +0300 Subject: [PATCH] minor: godoc: remove invalid comment --- context/context.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/context/context.go b/context/context.go index 39329536..3caff8d9 100644 --- a/context/context.go +++ b/context/context.go @@ -2364,9 +2364,6 @@ func (ctx *Context) ReadParams(ptr interface{}) error { // to the "ptr" pointer struct value. // The struct fields may contain "url" or "param" binding tags. // If a validator exists then it validates the result too. -// -// Note that if the registered route contains a tail path parameter -// it may override any URL queries. func (ctx *Context) ReadURL(ptr interface{}) error { values := make(map[string][]string, ctx.params.Len()) ctx.params.Visit(func(key string, value string) {