Browse Source

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

Manu Mtz-Almeida 11 năm trước cách đây
mục cha
commit
f973263072
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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)