summaryrefslogtreecommitdiff
path: root/col.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2017-10-31 16:33:36 +0800
committerRi Xu <xuri.me@gmail.com>2017-10-31 16:33:36 +0800
commitf10ee929d0818f6327f33c7813eaa9a318555cc3 (patch)
tree7a0e4035fee8963eeec925bb6f2d5258e88379b5 /col.go
parentebafbdde73e3e0498e547a2bd862552d9e304701 (diff)
- Bugfix: use sheet name in func `AddPicture`, relate issue #142;
- godoc updated
Diffstat (limited to 'col.go')
-rw-r--r--col.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/col.go b/col.go
index da2a004..51ad8a7 100644
--- a/col.go
+++ b/col.go
@@ -15,7 +15,7 @@ const (
)
// GetColVisible provides a function to get visible of a single column by given
-// worksheet index and column name. For example, get visible state of column D
+// worksheet name and column name. For example, get visible state of column D
// in Sheet1:
//
// xlsx.GetColVisible("Sheet1", "D")
@@ -36,7 +36,7 @@ func (f *File) GetColVisible(sheet, column string) bool {
}
// SetColVisible provides a function to set visible of a single column by given
-// worksheet index and column name. For example, hide column D in Sheet1:
+// worksheet name and column name. For example, hide column D in Sheet1:
//
// xlsx.SetColVisible("Sheet1", "D", false)
//