1
0
mirror of https://github.com/fumiama/go-docx.git synced 2026-06-12 11:40:28 +08:00

make lint happy

This commit is contained in:
源文雨
2023-03-30 22:17:38 +08:00
parent f241cc1484
commit 34f53a967c
10 changed files with 34 additions and 34 deletions

View File

@@ -38,7 +38,7 @@ type WordprocessingCanvas struct {
}
// UnmarshalXML ...
func (c *WordprocessingCanvas) UnmarshalXML(d *xml.Decoder, start xml.StartElement) (err error) {
func (c *WordprocessingCanvas) UnmarshalXML(d *xml.Decoder, _ xml.StartElement) (err error) {
for {
t, err := d.Token()
if err == io.EOF {
@@ -105,7 +105,7 @@ type WPCBackground struct {
}
// UnmarshalXML ...
func (b *WPCBackground) UnmarshalXML(d *xml.Decoder, start xml.StartElement) (err error) {
func (b *WPCBackground) UnmarshalXML(d *xml.Decoder, _ xml.StartElement) (err error) {
for {
t, err := d.Token()
if err == io.EOF {
@@ -138,7 +138,7 @@ type WPCWhole struct {
}
// UnmarshalXML ...
func (w *WPCWhole) UnmarshalXML(d *xml.Decoder, start xml.StartElement) (err error) {
func (w *WPCWhole) UnmarshalXML(d *xml.Decoder, _ xml.StartElement) (err error) {
for {
t, err := d.Token()
if err == io.EOF {