Skip to content

Commit

Permalink
Correct naming mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
omaus committed Mar 7, 2023
1 parent e83138b commit 45c5284
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/FsSpreadsheet/Cells/FsCellsCollection.fs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ type FsCellsCollection() =
/// <summary>Removes the value of an FsCell at given row- and columnIndex from the FsCollection.</summary>
/// <exception cref="System.ArgumentNullException">if rowIndex or columnIndex is null.</exception>
/// <exception cref="System.Generic.KeyNotFoundException">if row or column at the given index does not exist.</exception>
member this.RemoveAt(rowIndex, colIndex) =
member this.RemoveValueAt(rowIndex, colIndex) =
_rowsCollection
.Item(rowIndex)
.Item(colIndex)
Expand All @@ -195,8 +195,8 @@ type FsCellsCollection() =
/// <summary>Removes the value of an FsCell at given row- and columnIndex from a given FsCollection.</summary>
/// <exception cref="System.ArgumentNullException">if rowIndex or columnIndex is null.</exception>
/// <exception cref="System.Generic.KeyNotFoundException">if row or column at the given index does not exist.</exception>
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() =
Expand Down

0 comments on commit 45c5284

Please sign in to comment.