summaryrefslogtreecommitdiff
path: root/col.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2018-12-11 11:41:20 +0800
committerGitHub <noreply@github.com>2018-12-11 11:41:20 +0800
commit4094e0019f08bb771eb45ee90b1ae119c71a0f3a (patch)
treed7fca8e0d1252c910a2a92cdee1e83a703dcdc59 /col.go
parentb89f75c8968e07f41cb7e44a4bbad493cd9e051a (diff)
parent81b43da7b6b5b34f408f0d785a6c798ddd3b6124 (diff)
Merge pull request #303 from CodeLingoBot/effective-go-fix-comments
Fix comments according to best practices by effective go
Diffstat (limited to 'col.go')
-rw-r--r--col.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/col.go b/col.go
index 32cda12..8401a99 100644
--- a/col.go
+++ b/col.go
@@ -337,7 +337,7 @@ func (f *File) RemoveCol(sheet, column string) {
f.adjustHelper(sheet, col, -1, -1)
}
-// Completion column element tags of XML in a sheet.
+// completeCol; Completion column element tags of XML in a sheet.
func completeCol(xlsx *xlsxWorksheet, row, cell int) {
buffer := bytes.Buffer{}
for r := range xlsx.SheetData.Row {