diff --git a/src/lib/config.ts b/src/lib/config.ts index a1be910c..c2267551 100644 --- a/src/lib/config.ts +++ b/src/lib/config.ts @@ -1276,14 +1276,14 @@ export async function getAsync( } /* - * Replaces the sync storage with your current userconfig. Does not merge: it overwrites. + * Replaces the configuration in your sync storage with your current configuration. Does not merge: it overwrites. */ export async function push() { return browser.storage.sync.set(await browser.storage.local.get(CONFIGNAME)) } /* - * Replaces the local storage with your sync storage. Does not merge: it overwrites. + * Replaces the local configuration with the configuration from your sync storage. Does not merge: it overwrites. */ export async function pull() { return browser.storage.local.set(await browser.storage.sync.get(CONFIGNAME))