diff --git a/docs/mithril.module.md b/docs/mithril.module.md index 5c9e4c14..da603473 100644 --- a/docs/mithril.module.md +++ b/docs/mithril.module.md @@ -104,7 +104,7 @@ m.module(document, module1); var module2 = {}; module2.controller = function() {}; -module1.view = function() {}; +module2.view = function() {}; m.module(document, module2); // logs "unloading module 1" ``` @@ -337,4 +337,4 @@ where: - **returns Object controllerInstance** An instance of the controller constructor - \ No newline at end of file + diff --git a/docs/mithril.request.md b/docs/mithril.request.md index 2b474861..f5141ffa 100644 --- a/docs/mithril.request.md +++ b/docs/mithril.request.md @@ -168,7 +168,7 @@ var log = function(value) { } var users = m.request({method: "GET", url: "/user"}) - .then(log); + .then(log) .then(function(users) { //add one more user to the response return users.concat({name: "Jane"}) @@ -338,7 +338,7 @@ You can read more about the [promise exception monitor here](mithril.deferred.md The `config` option can be used to arbitrarily configure the native XMLHttpRequest instance and to access properties that would not be accessible otherwise. -The example below show how to configure a request where the server expects requests to have a `Content-Type: application/json` header +The example below shows how to configure a request where the server expects requests to have a `Content-Type: application/json` header ```javascript var xhrConfig = function(xhr) { diff --git a/docs/mithril.route.md b/docs/mithril.route.md index fb3b50ee..43497ae9 100644 --- a/docs/mithril.route.md +++ b/docs/mithril.route.md @@ -78,7 +78,7 @@ This redirects to the URL `http://server/#/dashboard/johndoe` and yields: Above, `dashboard` is a module. It contains a `controller` and a `view` properties. When the URL matches a route, the respective module's controller is instantiated and passed as a parameter to the view. -In this case, since there's only route, the app redirects to the default route `"/dashboard/johndoe"`. +In this case, since there's only one route, the app redirects to the default route `"/dashboard/johndoe"`. The string `johndoe` is bound to the `:userID` parameter, which can be retrieved programmatically in the controller via `m.route.param("userID")`.