From ea79900bf344cdd4fc6a025208edbbc28f9cd286 Mon Sep 17 00:00:00 2001 From: Jason Streifling Date: Tue, 15 Oct 2024 21:10:12 +0200 Subject: [PATCH] Correct typo --- person.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/person.go b/person.go index 1fe0160..1e8fe8c 100644 --- a/person.go +++ b/person.go @@ -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) } }