summaryrefslogtreecommitdiff
path: root/sheet.go
diff options
context:
space:
mode:
authorMJacred <loesch.benny92@gmx.de>2022-07-14 17:36:43 +0200
committerGitHub <noreply@github.com>2022-07-14 23:36:43 +0800
commit6429588e1448f70539774a88840f094829cb9e07 (patch)
treebe54a60658885cfb27d037f06af457dda5644c3a /sheet.go
parente37724c22b95de974f0235e992236d555aa6ad12 (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.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sheet.go b/sheet.go
index e88f953..2a722c9 100644
--- a/sheet.go
+++ b/sheet.go
@@ -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 {