浏览代码

Teeny tiny typo fix!

Kane Rogers 10 年之前
父节点
当前提交
d3302e76c2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      README.md

+ 1 - 1
README.md

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