Grammar fix: followings -> following

This commit is contained in:
Nikola Kovacs
2015-04-21 15:08:16 +02:00
parent ebe6c3e7fa
commit f11bdfa2a7
19 changed files with 19 additions and 19 deletions

View File

@@ -59,7 +59,7 @@ interface ActiveQueryInterface extends QueryInterface
* For example, `orders.address` means the `address` relation defined
* in the model class corresponding to the `orders` relation.
*
* The followings are some usage examples:
* The following are some usage examples:
*
* ~~~
* // find customers together with their orders and country

View File

@@ -53,7 +53,7 @@ trait ActiveQueryTrait
* For example, `orders.address` means the `address` relation defined
* in the model class corresponding to the `orders` relation.
*
* The followings are some usage examples:
* The following are some usage examples:
*
* ~~~
* // find customers together with their orders and country

View File

@@ -91,7 +91,7 @@ interface QueryInterface
* - `['status' => null]` generates `status IS NULL`.
*
* A condition in operator format generates the SQL expression according to the specified operator, which
* can be one of the followings:
* can be one of the following:
*
* - **and**: the operands should be concatenated together using `AND`. For example,
* `['and', 'id=1', 'id=2']` will generate `id=1 AND id=2`. If an operand is an array,

View File

@@ -36,7 +36,7 @@ use yii\caching\TagDependency;
abstract class Schema extends Object
{
/**
* The followings are the supported abstract column data types.
* The following are the supported abstract column data types.
*/
const TYPE_PK = 'pk';
const TYPE_BIGPK = 'bigpk';