Skip to content

Commit

Permalink
Updated collections.md
Browse files Browse the repository at this point in the history
  • Loading branch information
RameshBabuPrudhvi committed Nov 3, 2023
1 parent 10533f4 commit 6846c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/03_guides/collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ dataTable.updateRows(row -> {
return row;
});
```
This will update the value for the "Key3" column in each row of the table. The function passed to updateRows takes a Map<K, V> as input, which represents a single row of the table. In this example, the function adds a new key-value pair to each row and returns the updated row.
This will update the value for the "Key3" column in each row of the table. The function passed to updateRows takes a Map as input, which represents a single row of the table. In this example, the function adds a new key-value pair to each row and returns the updated row.

### Updating Cell
To update a cell at the given row index and column key in a DataTable, use the updateCell method:
Expand Down

0 comments on commit 6846c26

Please sign in to comment.