diff options
Diffstat (limited to 'lib.go')
-rw-r--r-- | lib.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -196,7 +196,7 @@ func CellNameToCoordinates(cell string) (int, int, error) { return -1, -1, fmt.Errorf(msg, cell, err) } if row > TotalRows { - return -1, -1, fmt.Errorf("row number exceeds maximum limit") + return -1, -1, ErrMaxRows } col, err := ColumnNameToNumber(colname) return col, row, err |