From 45c528440c4ce122eba922e14c228372d37a160f Mon Sep 17 00:00:00 2001 From: omaus Date: Tue, 7 Mar 2023 15:39:33 +0100 Subject: [PATCH] Correct naming mistake --- src/FsSpreadsheet/Cells/FsCellsCollection.fs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/FsSpreadsheet/Cells/FsCellsCollection.fs b/src/FsSpreadsheet/Cells/FsCellsCollection.fs index 5f7d156a..59e11e6d 100644 --- a/src/FsSpreadsheet/Cells/FsCellsCollection.fs +++ b/src/FsSpreadsheet/Cells/FsCellsCollection.fs @@ -186,7 +186,7 @@ type FsCellsCollection() = /// Removes the value of an FsCell at given row- and columnIndex from the FsCollection. /// if rowIndex or columnIndex is null. /// if row or column at the given index does not exist. - member this.RemoveAt(rowIndex, colIndex) = + member this.RemoveValueAt(rowIndex, colIndex) = _rowsCollection .Item(rowIndex) .Item(colIndex) @@ -195,8 +195,8 @@ type FsCellsCollection() = /// Removes the value of an FsCell at given row- and columnIndex from a given FsCollection. /// if rowIndex or columnIndex is null. /// if row or column at the given index does not exist. - static member removeAt rowIndex colIndex (cellsCollection : FsCellsCollection) = - cellsCollection.RemoveAt(rowIndex, colIndex) + static member removeValueAt rowIndex colIndex (cellsCollection : FsCellsCollection) = + cellsCollection.RemoveValueAt(rowIndex, colIndex) /// Returns all FsCells of the FsCellsCollection. member this.GetCells() =