Skip to content
Open
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
2 changes: 1 addition & 1 deletion website/content/guide/binding.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ type User struct {
e.POST("/users", func(c echo.Context) (err error) {
u := new(User)
if err = c.Bind(u); err != nil {
return
return err
}
// To avoid security flaws try to avoid passing bound structs directly to other methods
// if these structs contain fields that should not be bindable.
Expand Down