From d3302e76c2d81fd0eae2d7263b2d779a8f7c56cf Mon Sep 17 00:00:00 2001 From: Kane Rogers Date: Thu, 30 Apr 2015 22:32:50 +1000 Subject: [PATCH] Teeny tiny typo fix! --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83055786..2e81d81c 100644 --- a/README.md +++ b/README.md @@ -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") }