chore(pkg/csv2lp): improve doc

pull/18779/head
Pavel Zavora 2020-06-29 19:42:17 +02:00
parent ff96ef04f9
commit b51866e7be
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ func (e CsvLineError) Error() string {
return fmt.Sprintf("%v", e.Err)
}
// CreateRowColumnError creates adds row number and column name to the error supplied
// CreateRowColumnError wraps an existing error to add line and column coordinates
func CreateRowColumnError(line int, columnLabel string, err error) CsvLineError {
return CsvLineError{
Line: line,