Browse Source

drop the unneeded leading backslash. [skip ci]

tags/2.0.0-rc
Qiang Xue 10 years ago
parent
commit
7d8ae76167
  1. 4
      docs/guide/structure-applications.md

4
docs/guide/structure-applications.md

@ -131,7 +131,7 @@ For example,
// an anonymous function // an anonymous function
function () { function () {
return new \app\components\Profiler(); return new app\components\Profiler();
} }
], ],
] ]
@ -143,7 +143,7 @@ For example,
>```php >```php
[ [
function () { function () {
return \Yii::$app->getModule('user'); return Yii::$app->getModule('user');
}, },
] ]
``` ```

Loading…
Cancel
Save