Skip to content

Commit

Permalink
docs(comment): Modify comment syntax error (#3389)
Browse files Browse the repository at this point in the history
  • Loading branch information
wanghaha-dev committed Nov 6, 2022
1 parent 8b9c55e commit 971fe21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -113,7 +113,7 @@
* chore(performance): improve countParams ([#2378](https://github.com/gin-gonic/gin/pull/2378))
* Remove some functions that have the same effect as the bytes package ([#2387](https://github.com/gin-gonic/gin/pull/2387))
* update:SetMode function ([#2321](https://github.com/gin-gonic/gin/pull/2321))
* remove a unused type SecureJSONPrefix ([#2391](https://github.com/gin-gonic/gin/pull/2391))
* remove an unused type SecureJSONPrefix ([#2391](https://github.com/gin-gonic/gin/pull/2391))
* Add a redirect sample for POST method ([#2389](https://github.com/gin-gonic/gin/pull/2389))
* Add CustomRecovery builtin middleware ([#2322](https://github.com/gin-gonic/gin/pull/2322))
* binding: avoid 2038 problem on 32-bit architectures ([#2450](https://github.com/gin-gonic/gin/pull/2450))
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -293,7 +293,7 @@ func main() {
router := gin.Default()

// Query string parameters are parsed using the existing underlying request object.
// The request responds to a url matching: /welcome?firstname=Jane&lastname=Doe
// The request responds to an url matching: /welcome?firstname=Jane&lastname=Doe
router.GET("/welcome", func(c *gin.Context) {
firstname := c.DefaultQuery("firstname", "Guest")
lastname := c.Query("lastname") // shortcut for c.Request.URL.Query().Get("lastname")
Expand Down Expand Up @@ -693,7 +693,7 @@ Also, Gin provides two sets of methods for binding:

When using the Bind-method, Gin tries to infer the binder depending on the Content-Type header. If you are sure what you are binding, you can use `MustBindWith` or `ShouldBindWith`.

You can also specify that specific fields are required. If a field is decorated with `binding:"required"` and has a empty value when binding, an error will be returned.
You can also specify that specific fields are required. If a field is decorated with `binding:"required"` and has an empty value when binding, an error will be returned.

```go
// Binding from JSON
Expand Down Expand Up @@ -2096,7 +2096,7 @@ func validate(obj interface{}) error {
}

// Now we can do this!!!
// FormA is a external type that we can't modify it's tag
// FormA is an external type that we can't modify it's tag
type FormA struct {
FieldA string `url:"field_a"`
}
Expand Down

0 comments on commit 971fe21

Please sign in to comment.