changeset 1347:594f3f1e45aa

Typo fix.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 26 Nov 2018 11:35:30 +0100
parents 474e95475832
children c539cb678c5b
files pkg/common/zip.go
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pkg/common/zip.go	Mon Nov 26 11:30:53 2018 +0100
+++ b/pkg/common/zip.go	Mon Nov 26 11:35:30 2018 +0100
@@ -19,7 +19,7 @@
 )
 
 // FindInZIP scans a ZIP file directory for a file that ends with
-// case invariant string. Returns only the first match.
+// case insensitive string. Returns only the first match.
 func FindInZIP(z *zip.ReadCloser, needle string) *zip.File {
 	needle = strings.ToLower(needle)
 	for _, straw := range z.File {