Merge pull request #512 from jhorowitz/master

Fixed typo. join -> john
This commit is contained in:
Manu Mtz.-Almeida 2016-01-26 19:58:16 +01:00
commit e73da74410
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ func main() {
}) })
// However, this one will match /user/john/ and also /user/john/send // 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) { router.GET("/user/:name/*action", func(c *gin.Context) {
name := c.Param("name") name := c.Param("name")
action := c.Param("action") action := c.Param("action")