Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions website/content/guide/request.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "Handling HTTP request in Echo"

To bind request body into a Go type use `Context#Bind(i interface{})`.
The default binder supports decoding application/json, application/xml and
application/x-www-form-urlencoded data based on the Context-Type header.
application/x-www-form-urlencoded data based on the Content-Type header.

Example below binds the request payload into `User` struct based on tags:

Expand Down Expand Up @@ -79,7 +79,7 @@ func (cb *CustomBinder) Bind(i interface{}, c echo.Context) (err error) {
}

// Define your custom implementation

return
}
```
Expand Down