From 31ba1ea8bceeacd178209c71ebf9710b0cc1198a Mon Sep 17 00:00:00 2001 From: eclair-lumiere <38656355+eclair-lumiere@users.noreply.github.com> Date: Wed, 18 Sep 2019 23:29:50 +0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b488f159..b8aac851 100644 --- a/README.md +++ b/README.md @@ -251,7 +251,7 @@ func main() { }) // However, this one will match /user/john/ and also /user/john/send - // If no other routers match /user/john, it will redirect to /user/john/ + // If no other routers match /user/john, it will return 404 page not found information router.GET("/user/:name/*action", func(c *gin.Context) { name := c.Param("name") action := c.Param("action")