Correct typo

This commit is contained in:
Jason Streifling 2024-10-15 21:10:12 +02:00
parent b26d6370f5
commit ea79900bf3

View File

@ -31,7 +31,7 @@ func (p *Person) Check() error {
if p.URI != "" {
if _, err := url.ParseRequestURI(string(p.URI)); err != nil {
return fmt.Errorf("email element of person %v not correctly formatted", p.Name)
return fmt.Errorf("uri element of person %v not correctly formatted", p.Name)
}
}