Kaynağa Gözat

Updates documentation

Manu Mtz-Almeida 10 yıl önce
ebeveyn
işleme
d209329891
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      context.go

+ 1 - 1
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