summaryrefslogtreecommitdiff
path: root/rows.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2019-03-07 16:26:15 +0800
committerGitHub <noreply@github.com>2019-03-07 16:26:15 +0800
commit092f16c744c40e85be5cf6128dfb35c96e7df78b (patch)
tree10e39157adafc565bc8c54ce25b83d0cf0a950b3 /rows.go
parent164a3e126aafd1b5652d9da60ae2ba2240d412eb (diff)
parentb974df402a70364ec9b39360b5e1f6722d36a857 (diff)
Merge pull request #352 from caozhiyi/master
update go test and function docs
Diffstat (limited to 'rows.go')
-rw-r--r--rows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rows.go b/rows.go
index 307936c..9575876 100644
--- a/rows.go
+++ b/rows.go
@@ -352,7 +352,7 @@ func (f *File) GetRowOutlineLevel(sheet string, row int) uint8 {
return xlsx.SheetData.Row[row-1].OutlineLevel
}
-// RemoveRow2 provides a function to remove single row by given worksheet name
+// RemoveRow provides a function to remove single row by given worksheet name
// and Excel row number. For example, remove row 3 in Sheet1:
//
// xlsx.RemoveRow("Sheet1", 3)