Updates documentation

This commit is contained in:
Manu Mtz-Almeida 2015-05-26 12:13:51 +02:00
parent 4c1447bc29
commit d209329891
1 changed files with 1 additions and 1 deletions

View File

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