From 28b6964c532b27423ca57162b939540b41f05c86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Gomes?= Date: Fri, 2 Oct 2015 09:13:33 -0300 Subject: [PATCH] Fix typo on README so the example compiles --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 830f138..b93b0b0 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ func validateStruct() { } // returns nil or ValidationErrors ( map[string]*FieldError ) - err := validate.Struct(user) + errs := validate.Struct(user) if errs != nil {