docs/guide/runtime-routing.md typo fixed [ci skip]

This commit is contained in:
Nobuo Kihara
2016-08-26 11:39:41 +09:00
parent 00cd052b81
commit 785bc0247d

View File

@ -106,7 +106,7 @@ in the application configuration like the following:
```
Similar to the default route of the application, there is also a default route for modules, so for example if there
is a `user` module and the request is parsed into the route `user` the modules [[yii\base\Module::defaultRoute|defaultRoute]]
is a `user` module and the request is parsed into the route `user` the module's [[yii\base\Module::defaultRoute|defaultRoute]]
is used to determine the controller. By default the controller name is `default`. If no action is specified in [[yii\base\Module::defaultRoute|defaultRoute]],
the [[yii\base\Controller::defaultAction|defaultAction]] property of the controller is used to determine the action.
In this example, the full route would be `user/default/index`.