From b4ef99cf35db03ae8b14d3c6928a5909f6128592 Mon Sep 17 00:00:00 2001 From: omaus Date: Mon, 13 Mar 2023 00:02:27 +0100 Subject: [PATCH] Add XML tags to member description --- src/FsSpreadsheet/FsRow.fs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/FsSpreadsheet/FsRow.fs b/src/FsSpreadsheet/FsRow.fs index 8e3c10af..d5e6b3b6 100644 --- a/src/FsSpreadsheet/FsRow.fs +++ b/src/FsSpreadsheet/FsRow.fs @@ -63,7 +63,7 @@ type FsRow (rangeAddress : FsRangeAddress, cells : FsCellsCollection, styleValue // _cells <- List.append _cells [cell] // cell - /// Returns the FsCell at the given columnIndex from an FsRow. + /// Returns the FsCell at the given columnIndex from an FsRow. static member getCellAt colIndex (row : FsRow) = row.Cell(colIndex) @@ -72,11 +72,11 @@ type FsRow (rangeAddress : FsRangeAddress, cells : FsCellsCollection, styleValue let cell = FsCell(value) cells.Add(int32 this.Index, int32 colIndex, cell) - /// Adds a value at the given row- and columnIndex to FsRow using. + /// Adds a value at the given row- and columnIndex to FsRow using. /// - /// If a cell exists in the given position, shoves it to the right. + /// If a cell exists in the given position, shoves it to the right. static member insertValueAt colIndex value (row : FsRow) = - row.InsertValueAt(colIndex, value) + row.InsertValueAt(colIndex, value) |> ignore row //member self.SortCells() = _cells <- _cells |> List.sortBy (fun c -> c.WorksheetColumn)