Skip to content

Commit 925b8ba

Browse files
committed
chore: correct js doc for chrome store
1 parent d6b5fe0 commit 925b8ba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/sessionManager/stores/chromeStore.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function getStorageValue(key: string): unknown | undefined {
1515
}
1616

1717
/**
18-
* Provides a memory based session manager implementation for the browser.
18+
* Provides a chrome.store.local based session manager implementation for the browser.
1919
* @class ChromeStore
2020
*/
2121
export class ChromeStore<V = StorageKeys> implements SessionManager<V> {
@@ -28,7 +28,7 @@ export class ChromeStore<V = StorageKeys> implements SessionManager<V> {
2828
}
2929

3030
/**
31-
* Sets the provided key-value store to the memory cache.
31+
* Sets the provided key-value store to the chrome.store.local.
3232
* @param {string} itemKey
3333
* @param {unknown} itemValue
3434
* @returns {void}
@@ -56,7 +56,7 @@ export class ChromeStore<V = StorageKeys> implements SessionManager<V> {
5656
}
5757

5858
/**
59-
* Gets the item for the provided key from the memory cache.
59+
* Gets the item for the provided key from the chrome.store.local cache.
6060
* @param {string} itemKey
6161
* @returns {unknown | null}
6262
*/
@@ -78,7 +78,7 @@ export class ChromeStore<V = StorageKeys> implements SessionManager<V> {
7878
}
7979

8080
/**
81-
* Removes the item for the provided key from the memory cache.
81+
* Removes the item for the provided key from the chrome.store.local cache.
8282
* @param {string} itemKey
8383
* @returns {void}
8484
*/

0 commit comments

Comments
 (0)