From 15f3385d533efe5a2e3c1006c87098d30b5b34a0 Mon Sep 17 00:00:00 2001 From: Alexander Kochetov Date: Wed, 18 Jun 2014 19:14:23 +0400 Subject: [PATCH] SluggableBehavior phpDoc updated --- framework/behaviors/SluggableBehavior.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/behaviors/SluggableBehavior.php b/framework/behaviors/SluggableBehavior.php index 1812dca..10ecf13 100644 --- a/framework/behaviors/SluggableBehavior.php +++ b/framework/behaviors/SluggableBehavior.php @@ -12,9 +12,9 @@ use yii\db\BaseActiveRecord; use yii\helpers\Inflector; /** - * SluggableBehavior automatically fills the specified attribute with the transliteration result of another attribute. + * SluggableBehavior automatically fills the specified attribute with the transliterated and adjusted version to use in URLs. * - * To use SluggableBehavior, simply insert the following code to your ActiveRecord class: + * To use SluggableBehavior, insert the following code to your ActiveRecord class: * * ```php * use yii\behaviors\SluggableBehavior;