diff options
author | Kurt Jung <kurt.w.jung@gmail.com> | 2015-10-08 15:05:15 -0400 |
---|---|---|
committer | Kurt Jung <kurt.w.jung@gmail.com> | 2015-10-08 15:05:15 -0400 |
commit | 47143d5c2dabe888df2ff3e586c911468881b55c (patch) | |
tree | a35d758fe3c97bc405897b3a375993abc7a5bf9a /internal | |
parent | 4bed0d1e5b814845432a73f62b9462a27fd53bda (diff) |
Omit type in declaration assignment
Diffstat (limited to 'internal')
-rw-r--r-- | internal/example/example.go | 4 |
1 files changed, 2 insertions, 2 deletions
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 |