Teeny tiny typo fix!

This commit is contained in:
Kane Rogers 2015-04-30 22:32:50 +10:00
parent ac0ad2fed8
commit d3302e76c2

View File

@ -29,7 +29,7 @@ func main() {
c.String(http.StatusUnauthorized, "not authorized")
})
router.PUT("/error", func(c *gin.Context) {
c.String(http.StatusInternalServerError, "and error happened :(")
c.String(http.StatusInternalServerError, "an error happened :(")
})
router.Run(":8080")
}