diff --git a/_examples/simple/main.go b/_examples/simple/main.go index 503669eb..c7d799bd 100644 --- a/_examples/simple/main.go +++ b/_examples/simple/main.go @@ -12,7 +12,7 @@ type User struct { LastName string `validate:"required"` Age uint8 `validate:"gte=0,lte=130"` Email string `validate:"required,email"` - Gender string `validate:"oneof=male female prefer_not_to` + Gender string `validate:"oneof=male female prefer_not_to"` FavouriteColor string `validate:"iscolor"` // alias for 'hexcolor|rgb|rgba|hsl|hsla' Addresses []*Address `validate:"required,dive,required"` // a person can have a home and cottage... }