From 52796f6e58e95145e2964d0d313a2f721dcc040e Mon Sep 17 00:00:00 2001 From: Ri Xu Date: Wed, 18 Jan 2017 16:05:01 +0800 Subject: Format commants, break comments after 80 characters. --- cell.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'cell.go') diff --git a/cell.go b/cell.go index d881220..f91b661 100644 --- a/cell.go +++ b/cell.go @@ -6,8 +6,8 @@ import ( "strings" ) -// GetCellValue provide function get value from cell by given sheet index and axis in XLSX file. -// The value of the merged cell is not available currently. +// GetCellValue provide function get value from cell by given sheet index and +// axis in XLSX file. The value of the merged cell is not available currently. func (f *File) GetCellValue(sheet string, axis string) string { axis = strings.ToUpper(axis) var xlsx xlsxWorksheet @@ -50,7 +50,8 @@ func (f *File) GetCellValue(sheet string, axis string) string { return "" } -// GetCellFormula provide function get formula from cell by given sheet index and axis in XLSX file. +// GetCellFormula provide function get formula from cell by given sheet index +// and axis in XLSX file. func (f *File) GetCellFormula(sheet string, axis string) string { axis = strings.ToUpper(axis) var xlsx xlsxWorksheet -- cgit v1.2.1