From cdc57db3b3758781bd053228bfb32879b3adf3de Mon Sep 17 00:00:00 2001 From: xuri Date: Wed, 4 Nov 2020 01:24:26 +0000 Subject: Fix race conditions --- xmlWorksheet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xmlWorksheet.go') diff --git a/xmlWorksheet.go b/xmlWorksheet.go index e5ea60d..26c8fac 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -313,7 +313,7 @@ type xlsxSheetData struct { // xlsxRow directly maps the row element. The element expresses information // about an entire row of a worksheet, and contains all cell definitions for a // particular row in the worksheet. -type xlsxRow struct { // alignment word +type xlsxRow struct { C []xlsxC `xml:"c"` R int `xml:"r,attr,omitempty"` Spans string `xml:"spans,attr,omitempty"` -- cgit v1.2.1