summaryrefslogtreecommitdiff
path: root/cell.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2017-09-13 22:00:33 +0800
committerRi Xu <xuri.me@gmail.com>2017-09-13 22:00:33 +0800
commitf05f799f8d33e24b3bbf6c030c9f22d2829e0748 (patch)
treedff6b11b838c5ee26ea8c0fcf1af26bba8355702 /cell.go
parent3e7192b6abaa9c8db29a2e34867879ebc9fedca7 (diff)
- API changed, use worksheet name instead of "sheet" + index, related issue #25, #43, #47, #51, #89, #101, #116 and #120.
- go test updated
Diffstat (limited to 'cell.go')
-rw-r--r--cell.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cell.go b/cell.go
index ca590a9..f3aa90b 100644
--- a/cell.go
+++ b/cell.go
@@ -263,7 +263,7 @@ func (f *File) GetCellHyperLink(sheet, axis string) (bool, string) {
// MergeCell provides function to merge cells by given coordinate area and sheet
// name. For example create a merged cell of D3:E9 on Sheet1:
//
-// xlsx.MergeCell("sheet1", "D3", "E9")
+// xlsx.MergeCell("Sheet1", "D3", "E9")
//
// If you create a merged cell that overlaps with another existing merged cell,
// those merged cells that already exist will be removed.