Skip to content

Commit 25f8d91

Browse files
authored
fix(typo): modify incorrect description (#486)
fix(typo): remove incorrect description
1 parent 4477757 commit 25f8d91

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/include/execution/executors/aggregation_executor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ class AggregationExecutor : public AbstractExecutor {
164164

165165
/**
166166
* Yield the next tuple from the insert.
167-
* @param[out] tuple The next tuple produced by the insert
168-
* @param[out] rid The next tuple RID produced by the insert
167+
* @param[out] tuple The next tuple produced by the aggregation
168+
* @param[out] rid The next tuple RID produced by the aggregation
169169
* @return `true` if a tuple was produced, `false` if there are no more tuples
170170
*/
171171
auto Next(Tuple *tuple, RID *rid) -> bool override;

src/include/execution/executors/delete_executor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class DeleteExecutor : public AbstractExecutor {
4444
/**
4545
* Yield the number of rows deleted from the table.
4646
* @param[out] tuple The integer tuple indicating the number of rows deleted from the table
47-
* @param[out] rid The next tuple RID produced by the update (ignore, not used)
47+
* @param[out] rid The next tuple RID produced by the delete (ignore, not used)
4848
* @return `true` if a tuple was produced, `false` if there are no more tuples
4949
*
5050
* NOTE: DeleteExecutor::Next() does not use the `rid` out-parameter.

0 commit comments

Comments
 (0)