Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris committed Sep 23, 2021
1 parent 32bf6b3 commit 17d050a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Spectre.Console/Extensions/TableExtensions.cs
Expand Up @@ -195,7 +195,7 @@ public static Table InsertRow(this Table table, int index, IEnumerable<IRenderab
/// <param name="table">The table to update.</param>
/// <param name="rowIndex">The index of row to update.</param>
/// <param name="columnIndex">The index of column to update.</param>
/// <param name="cellData">The row columns to add.</param>
/// <param name="cellData">New cell data.</param>
/// <returns>The same instance so that multiple calls can be chained.</returns>
public static Table UpdateCell(this Table table, int rowIndex, int columnIndex, IRenderable cellData)
{
Expand All @@ -220,7 +220,7 @@ public static Table UpdateCell(this Table table, int rowIndex, int columnIndex,
/// <param name="table">The table to update.</param>
/// <param name="rowIndex">The index of row to update.</param>
/// <param name="columnIndex">The index of column to update.</param>
/// <param name="cellData">The row columns to add.</param>
/// <param name="cellData">New cell data.</param>
/// <returns>The same instance so that multiple calls can be chained.</returns>
public static Table UpdateCell(this Table table, int rowIndex, int columnIndex, string cellData)
{
Expand Down

0 comments on commit 17d050a

Please sign in to comment.