Skip to content

Commit b3def23

Browse files
committed
docs: tweaked a few code comments
1 parent a4bce1a commit b3def23

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/idb-cache/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ export interface IDBCacheConfig {
7171
*/
7272
debug?: boolean;
7373
/**
74-
* Milliseconds after which cached items are considered eligible
75-
* for removal during garbage collection.
74+
* Milliseconds after which cached items are considered eligible for removal.
7675
*/
7776
maxAge?: number;
7877
/**
@@ -233,7 +232,8 @@ export class IDBCache implements IDBCacheInterface {
233232
}
234233

235234
/**
236-
* Cleans up the cache by removing expired items, flushing busted cache items, and enforcing the maxTotalChunks limit.
235+
* Cleans up the cache by removing expired items, flushing busted cache items,
236+
* and enforcing the maxTotalChunks limit.
237237
* @throws {DatabaseError} If there is an issue accessing the database.
238238
*/
239239
public async cleanup(): Promise<void> {

0 commit comments

Comments
 (0)