From 47143d5c2dabe888df2ff3e586c911468881b55c Mon Sep 17 00:00:00 2001 From: Kurt Jung Date: Thu, 8 Oct 2015 15:05:15 -0400 Subject: Omit type in declaration assignment --- internal/example/example.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal') diff --git a/internal/example/example.go b/internal/example/example.go index 6a3c65a..9e2c736 100644 --- a/internal/example/example.go +++ b/internal/example/example.go @@ -94,8 +94,8 @@ var ( // 00000230 44 46 20 31 2e 37 29 0a 2f 43 72 65 61 74 69 6f |DF 1.7)./Creatio| // 00000240 6e 44 61 74 65 20 28 44 3a 32 30 31 35 31 30 30 |nDate (D:2015100| // 00000250 38 31 32 33 30 34 35 29 0a 3e 3e 0a 65 6e 64 6f |8123045).>>.endo| - creationDateRe *regexp.Regexp = regexp.MustCompile("/CreationDate \\(D:\\d{14}\\)") - fixDate []byte = []byte("/CreationDate (D:20000101000000)") + creationDateRe = regexp.MustCompile("/CreationDate \\(D:\\d{14}\\)") + fixDate = []byte("/CreationDate (D:20000101000000)") ) // referenceCompare compares the specified file with the file's reference copy -- cgit v1.2.1-24-ge1ad