@@ -285,7 +285,7 @@ func (xlsx *xlsxC) getValueFrom(f *File, d *xlsxSST) (string, error) {
285285 }
286286}
287287
288- // SetRowVisible2 provides a function to set visible of a single row by given
288+ // SetRowVisible provides a function to set visible of a single row by given
289289// worksheet name and Excel row number. For example, hide row 2 in Sheet1:
290290//
291291// xlsx.SetRowVisible("Sheet1", 2, false)
@@ -305,10 +305,9 @@ func (f *File) SetRowVisible(sheet string, row int, visible bool) {
305305 xlsx .SheetData .Row [rowIdx ].Hidden = true
306306}
307307
308- // GetRowVisible2 provides a function to get visible of a single row by given
309- // worksheet name and Excel row number.
310- // For example, get visible state of row 2 in
311- // Sheet1:
308+ // GetRowVisible provides a function to get visible of a single row by given
309+ // worksheet name and Excel row number. For example, get visible state of row
310+ // 2 in Sheet1:
312311//
313312// xlsx.GetRowVisible("Sheet1", 2)
314313//
@@ -376,8 +375,9 @@ func (f *File) RemoveRow(sheet string, row int) {
376375 }
377376}
378377
379- // InsertRow2 provides a function to insert a new row after given Excel row number
380- // starting from 1. For example, create a new row before row 3 in Sheet1:
378+ // InsertRow provides a function to insert a new row after given Excel row
379+ // number starting from 1. For example, create a new row before row 3 in
380+ // Sheet1:
381381//
382382// xlsx.InsertRow("Sheet1", 3)
383383//
0 commit comments