diff --git a/processors.go b/processors.go index 33fc294..6f358b3 100644 --- a/processors.go +++ b/processors.go @@ -199,7 +199,7 @@ func ProcessorCompanyName(cmap *ColumnMapper, input string) (string, error) { return fake.Company(), nil } -// ProcessorRandomBoolean will return a random boolean value with. +// ProcessorRandomBoolean will return a random boolean value. func ProcessorRandomBoolean(cmap *ColumnMapper, input string) (string, error) { var randomBoolean string = "FALSE" if rand.Intn(2) == 0 {