Merge pull request #50 from AlexanderChen1989/master

Fix READEME.md
This commit is contained in:
Javier Provecho 2014-07-07 23:56:36 +02:00
commit 33d4704637
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ func main() {
r.Use(Logger()) r.Use(Logger())
r.GET("/test", func(c *gin.Context){ r.GET("/test", func(c *gin.Context){
example := r.Get("example").(string) example := c.Get("example").(string)
// it would print: "12345" // it would print: "12345"
log.Println(example) log.Println(example)