From 192af02a40cc745d967be1c96fcc52569ca8e8df Mon Sep 17 00:00:00 2001 From: Ri Xu Date: Fri, 2 Sep 2016 11:54:52 +0800 Subject: Format code with golint rules --- cell.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cell.go') diff --git a/cell.go b/cell.go index 4ce9619..6788daf 100644 --- a/cell.go +++ b/cell.go @@ -6,14 +6,14 @@ import ( "strings" ) -// Get value from cell by given sheet index and axis in XLSX file +// GetCellValue provide function get value from cell by given sheet index and axis in XLSX file func GetCellValue(file []FileList, sheet string, axis string) string { axis = strings.ToUpper(axis) var xlsx xlsxWorksheet row := getRowIndex(axis) xAxis := row - 1 name := `xl/worksheets/` + strings.ToLower(sheet) + `.xml` - xml.Unmarshal([]byte(readXml(file, name)), &xlsx) + xml.Unmarshal([]byte(readXML(file, name)), &xlsx) rows := len(xlsx.SheetData.Row) if rows <= xAxis { return `` @@ -26,7 +26,7 @@ func GetCellValue(file []FileList, sheet string, axis string) string { shardStrings := xlsxSST{} xlsxSI := 0 xlsxSI, _ = strconv.Atoi(v.V) - xml.Unmarshal([]byte(readXml(file, `xl/sharedStrings.xml`)), &shardStrings) + xml.Unmarshal([]byte(readXML(file, `xl/sharedStrings.xml`)), &shardStrings) return shardStrings.SI[xlsxSI].T case "str": return v.V -- cgit v1.2.1