summaryrefslogtreecommitdiff
path: root/lib.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2019-03-20 15:13:41 +0800
committerxuri <xuri.me@gmail.com>2019-03-20 15:13:41 +0800
commitbeff7b4f3c1c9a964d5f09181e1368d3a2b9a096 (patch)
tree754e7ddfd98b277e3737891c005a174c83c04c73 /lib.go
parentdc01264562e6e88d77a28042408029770ea32df4 (diff)
Typo fixed and godoc updated
Diffstat (limited to 'lib.go')
-rw-r--r--lib.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.go b/lib.go
index c33c934..809a16b 100644
--- a/lib.go
+++ b/lib.go
@@ -156,7 +156,7 @@ func MustColumnNameToNumber(name string) int {
//
// Example:
//
-// excelize.ToAlphaString(37) // returns "AK", nil
+// excelize.ColumnNumberToName(37) // returns "AK", nil
//
func ColumnNumberToName(num int) (string, error) {
if num < 1 {