Skip to content

Commit

Permalink
chore(pkg/csv2lp): improve doc
Browse files Browse the repository at this point in the history
  • Loading branch information
sranka committed Jul 23, 2020
1 parent 355e7e6 commit 345cd56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/csv2lp/csv2lp.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 345cd56

Please sign in to comment.