瀏覽代碼

Merge pull request #214 from rns/patch-1

Fix typo in README.md
Javier Provecho Fernandez 11 年之前
父節點
當前提交
fb58dc7491
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -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")
 }