summaryrefslogtreecommitdiff
path: root/rows.go
diff options
context:
space:
mode:
Diffstat (limited to 'rows.go')
-rw-r--r--rows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rows.go b/rows.go
index 5b8d7d8..6ece77b 100644
--- a/rows.go
+++ b/rows.go
@@ -54,7 +54,7 @@ func (f *File) GetRows(sheet string) ([][]string, error) {
}
rows := make([][]string, rowCount)
for i := range rows {
- rows[i] = make([]string, colCount+1)
+ rows[i] = make([]string, colCount)
}
var row int