From 6429588e1448f70539774a88840f094829cb9e07 Mon Sep 17 00:00:00 2001 From: MJacred Date: Thu, 14 Jul 2022 17:36:43 +0200 Subject: adjust `ErrColumnNumber`, rename `TotalColumns` to `MaxColumns` and add new constant `MinColumns` (#1272) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Benjamin Lösch --- sheet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sheet.go') 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 { -- cgit v1.2.1