浏览代码

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

"not match neither" means that it will match.
Alex 7 年之前
父节点
当前提交
8aef947f6e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -238,7 +238,7 @@ func main() {
 func main() {
 func main() {
 	router := gin.Default()
 	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) {
 	router.GET("/user/:name", func(c *gin.Context) {
 		name := c.Param("name")
 		name := c.Param("name")
 		c.String(http.StatusOK, "Hello %s", name)
 		c.String(http.StatusOK, "Hello %s", name)