From d1e76fc432ac5c9bde99591ec5e88e46b62d9c3d Mon Sep 17 00:00:00 2001 From: xuri Date: Wed, 17 Aug 2022 10:59:52 +0800 Subject: This closes #1319, fix calculate error for formula with negative symbol - Update unit test and comment for the functions --- rows.go | 1 + 1 file changed, 1 insertion(+) (limited to 'rows.go') diff --git a/rows.go b/rows.go index 9eef628..5808530 100644 --- a/rows.go +++ b/rows.go @@ -179,6 +179,7 @@ func (rows *Rows) Columns(opts ...Options) ([]string, error) { return rowIterator.columns, rowIterator.err } +// extractRowOpts extract row element attributes. func extractRowOpts(attrs []xml.Attr) RowOpts { rowOpts := RowOpts{Height: defaultRowHeight} if styleID, err := attrValToInt("s", attrs); err == nil && styleID > 0 && styleID < MaxCellStyles { -- cgit v1.2.1