From c5c806d22d3f0d3f92c2a18c1351a24a677462e5 Mon Sep 17 00:00:00 2001 From: Josh Horowitz Date: Thu, 14 Jan 2016 15:58:17 -0500 Subject: [PATCH] Fixed typo. join -> john --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e83952d6..6af2d760 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,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/join/ + // If no other routers match /user/john, it will redirect to /user/john/ router.GET("/user/:name/*action", func(c *gin.Context) { name := c.Param("name") action := c.Param("action")