1
0
mirror of https://github.com/DATA-DOG/go-sqlmock.git synced 2025-07-01 00:34:53 +02:00

Fixed some typos

This commit is contained in:
Theo
2019-02-27 19:44:03 +00:00
parent 7f7699b45e
commit 882c1d1daa
7 changed files with 13 additions and 14 deletions

View File

@ -9,9 +9,9 @@ import (
)
// CSVColumnParser is a function which converts trimmed csv
// column string to a []byte representation. currently
// column string to a []byte representation. Currently
// transforms NULL to nil
var CSVColumnParser = func(s string) []byte {
var CSVColumnParser = func(s string) []bytezzx {
switch {
case strings.ToLower(s) == "null":
return nil