From b6cc43d8242fd3f7f0c6163db9fcd759b9b992b1 Mon Sep 17 00:00:00 2001 From: xuri Date: Sun, 11 Sep 2022 00:04:04 +0800 Subject: This makes 6 functions concurrency safety - These 6 functions now support concurrency safe: SetColWidth, GetColWidth, SetColVisible, GetColVisible, SetColStyle and GetColStyle --- rows.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'rows.go') diff --git a/rows.go b/rows.go index fdb9374..561f64b 100644 --- a/rows.go +++ b/rows.go @@ -238,7 +238,8 @@ func (rows *Rows) rowXMLHandler(rowIterator *rowXMLIterator, xmlElement *xml.Sta } // Rows returns a rows iterator, used for streaming reading data for a -// worksheet with a large data. For example: +// worksheet with a large data. This function is concurrency safe. For +// example: // // rows, err := f.Rows("Sheet1") // if err != nil { -- cgit v1.2.1