docs: fix typo in function documentation (#3872)

This commit is contained in:
TotomiEcio 2024-03-11 11:25:28 -03:00 committed by GitHub
parent 646312aef6
commit 83fc7673f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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/"
// })