diff --git a/plugins/updater/guest-js/index.ts b/plugins/updater/guest-js/index.ts index e2be024a..03da728f 100644 --- a/plugins/updater/guest-js/index.ts +++ b/plugins/updater/guest-js/index.ts @@ -61,7 +61,7 @@ class Update { } } -/** Check for updates, returns `null` if no updates are available */ +/** Check for updates, resolves to `null` if no updates are available */ async function check(options?: CheckOptions): Promise { return invoke("plugin:updater|check", { ...options }).then( (meta) => (meta.available ? new Update(meta) : null)