summaryrefslogtreecommitdiff
path: root/lib.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2016-10-19 20:39:44 +0800
committerRi Xu <xuri.me@gmail.com>2016-10-19 20:39:44 +0800
commit75abc628fe41bc67c787f79103c8d72e539a9fb2 (patch)
tree0d469589163f43d4e1834e9f4548e3f6bf031d9b /lib.go
parente28de172c6008c590c32ace62da2535ea0338de9 (diff)
Update godoc of package.
Diffstat (limited to 'lib.go')
-rw-r--r--lib.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib.go b/lib.go
index 8030601..03fc8f2 100644
--- a/lib.go
+++ b/lib.go
@@ -39,7 +39,7 @@ func ReadZipReader(r *zip.Reader) (map[string]string, int, error) {
return fileList, worksheets, nil
}
-// Read XML content as string and replace drawing property in XML namespace of sheet
+// Read XML content as string and replace drawing property in XML namespace of sheet.
func (f *File) readXML(name string) string {
if content, ok := f.XLSX[name]; ok {
return strings.Replace(content, `<drawing r:id=`, `<drawing rid=`, -1)
@@ -47,12 +47,12 @@ func (f *File) readXML(name string) string {
return ``
}
-// Update given file content in file list of XLSX
+// Update given file content in file list of XLSX.
func (f *File) saveFileList(name string, content string) {
f.XLSX[name] = XMLHeader + content
}
-// Read file content as string in a archive file
+// Read file content as string in a archive file.
func readFile(file *zip.File) string {
rc, err := file.Open()
if err != nil {
@@ -64,7 +64,7 @@ func readFile(file *zip.File) string {
return string(buff.Bytes())
}
-// Convert integer to Excel sheet column title
+// Convert integer to Excel sheet column title.
func toAlphaString(value int) string {
if value < 0 {
return ``
@@ -78,7 +78,7 @@ func toAlphaString(value int) string {
return ans
}
-// Convert Excel sheet column title to int
+// Convert Excel sheet column title to int.
func titleToNumber(s string) int {
weight := 0.0
sum := 0
@@ -90,7 +90,7 @@ func titleToNumber(s string) int {
}
// letterOnlyMapF is used in conjunction with strings.Map to return
-// only the characters A-Z and a-z in a string
+// only the characters A-Z and a-z in a string.
func letterOnlyMapF(rune rune) rune {
switch {
case 'A' <= rune && rune <= 'Z':