From d209329891e99b256b6e6e9319defd0e5d679bc1 Mon Sep 17 00:00:00 2001 From: Manu Mtz-Almeida Date: Tue, 26 May 2015 12:13:51 +0200 Subject: [PATCH] Updates documentation --- context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context.go b/context.go index f77424f8..88e85fb4 100644 --- a/context.go +++ b/context.go @@ -190,7 +190,7 @@ func (c *Context) MustGet(key string) interface{} { /************ INPUT DATA ************/ /************************************/ -/** Shortcut for c.Request.FormValue(key) */ +/** Shortcut for c.Request.URL.Query().Get(key) */ func (c *Context) Query(key string) (va string) { va, _ = c.query(key) return