From 6e540a639f96cdcd8123d0cf30da5de609e0656e Mon Sep 17 00:00:00 2001 From: Aaron Raddon Date: Wed, 26 Jul 2017 18:27:53 -0700 Subject: [PATCH] state constants dont need to be public --- parseany.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parseany.go b/parseany.go index fd81d10..6bddfa9 100644 --- a/parseany.go +++ b/parseany.go @@ -7,10 +7,10 @@ import ( "unicode" ) -type DateState int +type dateState int const ( - st_START DateState = iota + st_START dateState = iota st_DIGIT st_DIGITDASH st_DIGITDASHALPHA