Browse Source

Update README.md

typo fix
rns 11 years ago
parent
commit
d852d334f4
1 changed files with 1 additions and 1 deletions
  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")
 }