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): *} */ 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).