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