Explorar o código

Merge pull request #275 from kanerogers/patch-1

Teeny tiny typo fix!
Manu Mtz.-Almeida %!s(int64=10) %!d(string=hai) anos
pai
achega
7cd2f2694d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      README.md

+ 1 - 1
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")
 }