浏览代码

Merge branch 'master' of github.com:gin-gonic/gin

Manu Mtz-Almeida 11 年之前
父节点
当前提交
f973263072
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -21,7 +21,7 @@ Yes, Gin is an internal project of [my](https://github.com/manucorporat) upcomin
 - Improve JSON/XML validation using bindings
 - Improve XML support
 - Improve documentation
-- Add more cool middlewares, for example redis catching (this also helps developers to understand the framework)
+- Add more cool middlewares, for example redis caching (this also helps developers to understand the framework)
 - Continuous integration
 
 
@@ -294,7 +294,7 @@ func main() {
     r.Use(Logger())
     
     r.GET("/test", func(c *gin.Context){
-        example := r.Get("example").(string)
+        example := c.Get("example").(string)
         
         // it would print: "12345"
         log.Println(example)