Skip to content

Commit

Permalink
docs: fix typo in function documentation (#3872)
Browse files Browse the repository at this point in the history
  • Loading branch information
TotomiEcio authored Mar 11, 2024
1 parent 646312a commit 83fc767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion context.go
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ func (c *Context) GetStringMapStringSlice(key string) (smss map[string][]string)
//
// router.GET("/user/:id", func(c *gin.Context) {
// // a GET request to /user/john
// id := c.Param("id") // id == "/john"
// id := c.Param("id") // id == "john"
// // a GET request to /user/john/
// id := c.Param("id") // id == "/john/"
// })
Expand Down

0 comments on commit 83fc767

Please sign in to comment.