Skip to content

Commit ab4af72

Browse files
committed
Minor comment clarification in transport service retry logic
Update comment to improve readability of the retry mechanism condition.
1 parent a1a9797 commit ab4af72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/performance/src/services/transport_service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export function resetTransportService(): void {
7272

7373
function processQueue(timeOffset: number): void {
7474
setTimeout(() => {
75-
// If there is no remaining Tries left, stop retrying.
75+
// If there is no remainingTries left, stop retrying.
7676
if (remainingTries <= 0) {
7777
return;
7878
}

0 commit comments

Comments
 (0)