From 26446431a05d93eb3d158ba66c063d95a0cd6de7 Mon Sep 17 00:00:00 2001 From: Theo Date: Thu, 28 Feb 2019 10:47:32 +0000 Subject: [PATCH] Typos again. --- rows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rows.go b/rows.go index d9fe95f..4dcd65c 100644 --- a/rows.go +++ b/rows.go @@ -11,7 +11,7 @@ import ( // CSVColumnParser is a function which converts trimmed csv // column string to a []byte representation. Currently // transforms NULL to nil -var CSVColumnParser = func(s string) []bytezzx { +var CSVColumnParser = func(s string) []byte { switch { case strings.ToLower(s) == "null": return nil