Skip to content

Commit

Permalink
Correct the comments
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljbruce committed Nov 25, 2024
1 parent 6cd2edc commit 96a9a36
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/tabular-api-surface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -460,13 +460,15 @@ Please use the format 'prezzy' or '${instance.name}/tables/prezzy'.`);
) {
/**
* If the data is the chunk transformer communicating that the
* lastScannedRow was received then this code is used.
* lastScannedRow was received then this message is passed along
* to the user stream to update the lastRowKey.
*/
next(null, rowData);
} else {
/**
* If the data is just regular rows being pushed from the
* chunk transformer then this code is used.
* chunk transformer then the rows are encoded so that they
* can be consumed by the user stream.
*/
const row = this.row((rowData as Row).key as string);
row.data = (rowData as Row).data;
Expand Down

0 comments on commit 96a9a36

Please sign in to comment.