diff --git a/src/services/diskLRU.ts b/src/services/diskLRU.ts index 263b93574d6857109743090f42ce9d141fb7404c..6e42c690ac9efeaf86682a1a34583a8c8fe23f7f 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); }