From 4c245d39c14c9986f6852a47f88c60c729143ce5 Mon Sep 17 00:00:00 2001 From: Bizley Date: Mon, 20 Jul 2015 10:42:28 +0200 Subject: [PATCH] Fix for few sections to match doc style guidelines Yii2 -> Yii 2 --- docs/guide/glossary.md | 2 +- docs/guide/test-environment-setup.md | 2 +- docs/guide/test-unit.md | 2 +- docs/guide/tutorial-yii-integration.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guide/glossary.md b/docs/guide/glossary.md index 60be5e4dd9..43623e3c1b 100644 --- a/docs/guide/glossary.md +++ b/docs/guide/glossary.md @@ -52,7 +52,7 @@ Module is a sub-application which contains MVC elements by itself, such as model ## namespace -Namespace refers to a [PHP language feature](http://php.net/manual/en/language.namespaces.php) which is actively used in Yii2. +Namespace refers to a [PHP language feature](http://php.net/manual/en/language.namespaces.php) which is actively used in Yii 2. # P diff --git a/docs/guide/test-environment-setup.md b/docs/guide/test-environment-setup.md index 0942c4a394..dfffd3e053 100644 --- a/docs/guide/test-environment-setup.md +++ b/docs/guide/test-environment-setup.md @@ -3,7 +3,7 @@ Testing environment setup > Note: This section is under development. -Yii2 has officially maintained integration with [`Codeception`](https://github.com/Codeception/Codeception) testing +Yii 2 has officially maintained integration with [`Codeception`](https://github.com/Codeception/Codeception) testing framework that allows you to create the following test types: - [Unit testing](test-unit.md) - verifies that a single unit of code is working as expected; diff --git a/docs/guide/test-unit.md b/docs/guide/test-unit.md index 6a809cc6cf..ca4a02b31b 100644 --- a/docs/guide/test-unit.md +++ b/docs/guide/test-unit.md @@ -22,4 +22,4 @@ Framework unit tests -------------------- If you want to run unit tests for Yii framework itself follow -"[Getting started with Yii2 development](https://github.com/yiisoft/yii2/blob/master/docs/internals/getting-started.md)". +"[Getting started with Yii 2 development](https://github.com/yiisoft/yii2/blob/master/docs/internals/getting-started.md)". diff --git a/docs/guide/tutorial-yii-integration.md b/docs/guide/tutorial-yii-integration.md index 46c6f82a92..6374f165af 100644 --- a/docs/guide/tutorial-yii-integration.md +++ b/docs/guide/tutorial-yii-integration.md @@ -160,7 +160,7 @@ class Yii extends \yii\BaseYii } Yii::$classMap = include($yii2path . '/classes.php'); -// register Yii2 autoloader via Yii1 +// register Yii 2 autoloader via Yii 1 Yii::registerAutoloader(['Yii', 'autoload']); // create the dependency injection container Yii::$container = new yii\di\Container;