Prechádzať zdrojové kódy

docs: remove double negative in README.md (#1480)

"not match neither" means that it will match.
Alex 7 rokov pred
rodič
commit
8aef947f6e
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -238,7 +238,7 @@ func main() {
 func main() {
 	router := gin.Default()
 
-	// This handler will match /user/john but will not match neither /user/ or /user
+	// This handler will match /user/john but will not match /user/ or /user
 	router.GET("/user/:name", func(c *gin.Context) {
 		name := c.Param("name")
 		c.String(http.StatusOK, "Hello %s", name)