From 0b51ee1e8ed76c29755c7e852b6e19925b122aa5 Mon Sep 17 00:00:00 2001 From: Aaron Greenlee Date: Sat, 9 Jan 2016 13:49:43 -0500 Subject: [PATCH] Removed duplicate punctuation. --- doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc.go b/doc.go index e87d1db..d9a5270 100644 --- a/doc.go +++ b/doc.go @@ -150,7 +150,7 @@ use the UTF-8 hex representation 0x7C, which is replaced in the code as a pipe, so the above will become excludesall=0x7C type Test struct { - Field `validate:"excludesall=|"` // BAD! Do not include a a pipe!. + Field `validate:"excludesall=|"` // BAD! Do not include a a pipe! Field `validate:"excludesall=0x7C"` // GOOD! Use the UTF-8 hex representation. }