Skip to content

Commit

Permalink
docs: fix typos (#689)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickschot authored and zacharygolba committed Apr 24, 2017
1 parent 608409d commit b636bf5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/packages/controller/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ class Controller {
* dealing with many common tasks, such as authentication.
*
* Functions called from the `beforeAction` hook will have `request` and
* `response` objects passed as arguements.
* `response` objects passed as arguments.
*
* **Example:**
*
Expand Down Expand Up @@ -405,7 +405,7 @@ class Controller {
*
* Functions called from the `afterAction` hook will have `request` and
* `response` objects passed as arguments as well as a third `payload`
* arguements that is a reference to resolved data of the Controller action
* arguments that is a reference to resolved data of the Controller action
* that was called within the current `request` / `response` cycle. If you
* return a value from a function added to the `afterAction` hook, that value
* will be used instead of the resolved data from the preceding Conroller
Expand Down
2 changes: 1 addition & 1 deletion src/packages/router/route/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class Route extends FreezeableSet<Action<any>> {
}
} else {
throw new TypeError(
'Arguements `controller` and `action` must not be undefined'
'Arguments `controller` and `action` must not be undefined'
);
}

Expand Down

0 comments on commit b636bf5

Please sign in to comment.