Merge pull request #214 from rns/patch-1

Fix typo in README.md
This commit is contained in:
Javier Provecho Fernandez 2015-02-10 09:46:58 +01:00
commit fb58dc7491
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ func main() {
c.String(401, "not authorized") c.String(401, "not authorized")
}) })
router.PUT("/error", func(c *gin.Context) { router.PUT("/error", func(c *gin.Context) {
c.String(500, "and error hapenned :(") c.String(500, "and error happened :(")
}) })
router.Run(":8080") router.Run(":8080")
} }