From 7d39cad13f23b46648f2fd660ec4ae627e26eccf Mon Sep 17 00:00:00 2001 From: nate Date: Fri, 1 Feb 2008 02:03:04 +0000 Subject: [PATCH] Updating docblocks git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6421 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/libs/model/model.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cake/libs/model/model.php b/cake/libs/model/model.php index 5502d241d..ac12f4136 100644 --- a/cake/libs/model/model.php +++ b/cake/libs/model/model.php @@ -193,8 +193,8 @@ class Model extends Overloadable { */ var $hasAndBelongsToMany = array(); /** - * List of behaviors to use. Settings can be passed to behaviors - * by using the behavior name as index. Eg: + * List of behaviors to load when the model object is initialized. Settings can be + * passed to behaviors by using the behavior name as index. Eg: * * array('Translate', 'MyBehavior' => array('setting1' => 'value1')) * @@ -203,7 +203,7 @@ class Model extends Overloadable { */ var $actsAs = null; /** - * Behavior objects + * Holds the Behavior objects currently bound to this model, keyed by behavior name * * @var array * @access public