diff options
author | Ri Xu <xuri.me@gmail.com> | 2016-09-02 11:54:52 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2016-09-02 11:54:52 +0800 |
commit | 192af02a40cc745d967be1c96fcc52569ca8e8df (patch) | |
tree | 7350c2c152b6df596759c214705f7a00eb30b573 /xmlWorksheet.go | |
parent | 0a0a36bafd160752c2af914ab3bdb1d28665ebe3 (diff) |
Format code with golint rules
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r-- | xmlWorksheet.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index a5744c9..fb3639d 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -28,7 +28,7 @@ type xlsxWorksheet struct { // xlsxDrawing change r:id to rid in the namespace type xlsxDrawing struct { - RId string `xml:"rid,attr"` + RID string `xml:"rid,attr"` } // xlsxHeaderFooter directly maps the headerFooter element in the namespace @@ -144,7 +144,7 @@ type xlsxSheetView struct { // ZoomScale float64 `xml:"zoomScale,attr"` // ZoomScaleNormal float64 `xml:"zoomScaleNormal,attr"` // ZoomScalePageLayoutView float64 `xml:"zoomScalePageLayoutView,attr"` - WorkbookViewId int `xml:"workbookViewId,attr"` + WorkbookViewID int `xml:"workbookViewId,attr"` Selection []xlsxSelection `xml:"selection"` Pane *xlsxPane `xml:"pane,omitempty"` } @@ -156,7 +156,7 @@ type xlsxSheetView struct { type xlsxSelection struct { Pane string `xml:"pane,attr,omitempty"` ActiveCell string `xml:"activeCell,attr"` - ActiveCellId int `xml:"activeCellId,attr"` + ActiveCellID int `xml:"activeCellId,attr"` SQRef string `xml:"sqref,attr"` } |