diff --git a/src/services/diskLRU.ts b/src/services/diskLRU.ts index 263b93574..6e42c690a 100644 --- a/src/services/diskLRU.ts +++ b/src/services/diskLRU.ts @@ -58,7 +58,7 @@ class DiskLRUService { } catch (e) { if (e.code === 'ENOENT') return; logError(e, 'Failed to evict least recently used'); - // ignoring the error, as it would retried on the next run + // ignoring the error, as it would get retried on the next run } this.evictLeastRecentlyUsed(cacheDir, maxSize); }