Jelajahi Sumber

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

"not match neither" means that it will match.
Alex 7 tahun lalu
induk
melakukan
8aef947f6e
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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)