From 6f055417fdb0cc3c414505b110fdb889052bb8fd Mon Sep 17 00:00:00 2001 From: Dmitry Danilson Date: Wed, 13 Aug 2014 16:32:29 +0700 Subject: [PATCH] Fixing typo in guide-structure-modules --- docs/guide/structure-modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/structure-modules.md b/docs/guide/structure-modules.md index e09e473e00..e790ed98cd 100644 --- a/docs/guide/structure-modules.md +++ b/docs/guide/structure-modules.md @@ -214,7 +214,7 @@ For example, the following application configuration makes sure the `debug` modu Modules can be nested in unlimited levels. That is, a module can contain another module which can contain yet another module. We call the former *parent module* while the latter *child module*. Child modules must be declared -in the [[yii\bas\Module::modules|modules]] property of their parent modules. For example, +in the [[yii\base\Module::modules|modules]] property of their parent modules. For example, ```php namespace app\modules\forum;