diff options
author | MJacred <loesch.benny92@gmx.de> | 2022-07-14 17:36:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-14 23:36:43 +0800 |
commit | 6429588e1448f70539774a88840f094829cb9e07 (patch) | |
tree | be54a60658885cfb27d037f06af457dda5644c3a /sheet.go | |
parent | e37724c22b95de974f0235e992236d555aa6ad12 (diff) |
adjust `ErrColumnNumber`, rename `TotalColumns` to `MaxColumns` and add new constant `MinColumns` (#1272)
Signed-off-by: Benjamin Lösch <loesch.benny92@gmx.de>
Diffstat (limited to 'sheet.go')
-rw-r--r-- | sheet.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -256,7 +256,7 @@ func replaceRelationshipsBytes(content []byte) []byte { // SetActiveSheet provides a function to set the default active sheet of the // workbook by a given index. Note that the active index is different from the -// ID returned by function GetSheetMap(). It should be greater or equal to 0 +// ID returned by function GetSheetMap(). It should be greater than or equal to 0 // and less than the total worksheet numbers. func (f *File) SetActiveSheet(index int) { if index < 0 { |