Update README.md

typo fix
This commit is contained in:
rns 2015-02-08 21:50:44 +02:00
parent b1758d3bfa
commit d852d334f4
1 changed files with 1 additions and 1 deletions

View File

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