Skip to content

Commit

Permalink
docs: remove double negative in README.md (#1480)
Browse files Browse the repository at this point in the history
"not match neither" means that it will match.
  • Loading branch information
awulkan authored and javierprovecho committed Aug 12, 2018
1 parent 6159213 commit 8aef947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8aef947

Please sign in to comment.