Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/bundles/files/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -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): *}
*/
Expand Down
4 changes: 2 additions & 2 deletions src/bundles/task.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
* `{ status: 'Exit', id: Symbol, duration: number, result: Result<Error, Success> }`
* 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).
Expand Down Expand Up @@ -163,7 +163,7 @@ export const perform = (type, task, ...[init]) =>
* `{ status: 'Exit', id: Symbol, duration: number, result: Result<Error, Success> }`
* 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).
Expand Down