Merge pull request #620 from betahu/patch-1

Update README.md
This commit is contained in:
Manu Mtz.-Almeida 2016-05-25 14:45:45 +02:00
commit f931d1ea80

View File

@ -11,7 +11,7 @@ import (
)
func main() {
ginS.GET("/", func(c *gin.Context) { c.String("Hello World") })
ginS.GET("/", func(c *gin.Context) { c.String(200, "Hello World") })
ginS.Run()
}
```