1
0
mirror of https://github.com/DATA-DOG/go-sqlmock.git synced 2025-03-31 21:45:15 +02:00

Typos again.

This commit is contained in:
Theo 2019-02-28 10:47:32 +00:00
parent 882c1d1daa
commit 26446431a0

View File

@ -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