Skip to content

Commit

Permalink
docs(operations): enhance the wording of a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
C0ZEN committed Jun 10, 2021
1 parent af3d0f0 commit 0936a35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Expand Up @@ -302,7 +302,7 @@ class IssuesProcessor {
const labelsToAddWhenUnstale = words_to_list_1.wordsToList(this.options.labelsToAddWhenUnstale);
const labelsToRemoveWhenUnstale = words_to_list_1.wordsToList(this.options.labelsToRemoveWhenUnstale);
for (const issue of issues.values()) {
// Skip the processing if no more operations remains
// Stop the processing if no more operations remains
if (!this._hasRemainingOperations()) {
break;
}
Expand Down
2 changes: 1 addition & 1 deletion src/classes/issues-processor.ts
Expand Up @@ -135,7 +135,7 @@ export class IssuesProcessor {
);

for (const issue of issues.values()) {
// Skip the processing if no more operations remains
// Stop the processing if no more operations remains
if (!this._hasRemainingOperations()) {
break;
}
Expand Down

0 comments on commit 0936a35

Please sign in to comment.