From 0936a35615e0d0c821d0fabf801ae7b8136dd551 Mon Sep 17 00:00:00 2001 From: TESTELIN Geoffrey Date: Wed, 9 Jun 2021 22:29:31 +0200 Subject: [PATCH] docs(operations): enhance the wording of a comment --- dist/index.js | 2 +- src/classes/issues-processor.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index ea80481b9..40f3c8f28 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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; } diff --git a/src/classes/issues-processor.ts b/src/classes/issues-processor.ts index e77e3055c..7539515fd 100644 --- a/src/classes/issues-processor.ts +++ b/src/classes/issues-processor.ts @@ -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; }