From 8525edeab45ad8c32da8baeab049f0ae05c147a6 Mon Sep 17 00:00:00 2001 From: Sai Asish Y Date: Sun, 10 May 2026 18:24:19 -0700 Subject: [PATCH 1/2] fix typo: succesful -> successful --- src/bundles/task.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bundles/task.js b/src/bundles/task.js index 58d68074e..6d14dcc16 100644 --- a/src/bundles/task.js +++ b/src/bundles/task.js @@ -74,7 +74,7 @@ * `{ status: 'Exit', id: Symbol, duration: number, result: Result }` * with some new new fields: * - `duration` - Is a time it took a task from `Init` to `Exit` in ms. - * - `result` - Is a result of the task. On succesful completion it is + * - `result` - Is a result of the task. On successful completion it is * `{ok:true, value:Success}` (value is return value of the async * function). On failure it is `{ok:false, error:Error}` (`error` is an * expception thrown, or a rejection reason of the promise). @@ -163,7 +163,7 @@ export const perform = (type, task, ...[init]) => * `{ status: 'Exit', id: Symbol, duration: number, result: Result }` * with some new new fields: * - `duration` - Is a time it took a task from `Init` to `Exit` in ms. - * - `result` - Is a result of the task. On succesful completion it is + * - `result` - Is a result of the task. On successful completion it is * `{ok:true, value:Success}` (value is return value of the async * generator). On failure it is `{ok:false, error:Error}` (`error` is an * expception thrown, or a rejection reason of the promise). From 1dafe047e79915570ae004ff6f60b0308a222397 Mon Sep 17 00:00:00 2001 From: Sai Asish Y Date: Sun, 10 May 2026 18:24:20 -0700 Subject: [PATCH 2/2] fix typo: succesful -> successful --- src/bundles/files/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bundles/files/actions.js b/src/bundles/files/actions.js index 44bca1289..c211d50f4 100644 --- a/src/bundles/files/actions.js +++ b/src/bundles/files/actions.js @@ -208,7 +208,7 @@ const actions = () => ({ /** * Fetches conten for the currently selected path. And updates - * `state.pageContent` on succesful completion. + * `state.pageContent` on successful completion. * @param {Info} info * @returns {function(Context): *} */