1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17:05 +00:00

minor: godoc: remove invalid comment

This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-10-18 19:39:31 +03:00
parent d0add202d9
commit 83462d2999

View File

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