Prechádzať zdrojové kódy

Merge pull request #214 from rns/patch-1

Fix typo in README.md
Javier Provecho Fernandez 11 rokov pred
rodič
commit
fb58dc7491
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -24,7 +24,7 @@ func main() {
 		c.String(401, "not authorized")
 		c.String(401, "not authorized")
 	})
 	})
 	router.PUT("/error", func(c *gin.Context) {
 	router.PUT("/error", func(c *gin.Context) {
-		c.String(500, "and error hapenned :(")
+		c.String(500, "and error happened :(")
 	})
 	})
 	router.Run(":8080")
 	router.Run(":8080")
 }
 }