summaryrefslogtreecommitdiff
path: root/lib.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2017-03-06 12:05:41 +0800
committerRi Xu <xuri.me@gmail.com>2017-03-06 12:05:41 +0800
commit1f73f08185e664d6914c8eb849a9797b26067628 (patch)
tree71ebce585a03f13e5b68c96a12d0aa06a7756a2c /lib.go
parent48722e6482d97e742755002061bf1c7b042bfb44 (diff)
- New feature: border setting support (Related issue #21);
- Function parameter code is simplified; - Fix element `Tint` value parsing error in worksheet; - Update go test
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 8c56f1b..3eda1eb 100644
--- a/lib.go
+++ b/lib.go
@@ -34,7 +34,7 @@ func (f *File) readXML(name string) string {
// saveFileList provides function to update given file content in file list of
// XLSX.
-func (f *File) saveFileList(name string, content string) {
+func (f *File) saveFileList(name, content string) {
f.XLSX[name] = XMLHeader + content
}