From cf4a9f420f6f88e9761e59aa38bcd403f6c4f21e Mon Sep 17 00:00:00 2001 From: mark_story Date: Wed, 12 Sep 2012 22:56:46 -0400 Subject: [PATCH] Tidy doc block. --- lib/Cake/View/Helper/FormHelper.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/Cake/View/Helper/FormHelper.php b/lib/Cake/View/Helper/FormHelper.php index d70e4d286..0c3cef835 100644 --- a/lib/Cake/View/Helper/FormHelper.php +++ b/lib/Cake/View/Helper/FormHelper.php @@ -168,14 +168,14 @@ class FormHelper extends AppHelper { * * The $key parameter accepts the following list of values: * - * - key: Returns the name of the primary key for the model - * - fields: Returns the model schema - * - validates: returns the list of fields that are required - * - errors: returns the list of validation errors + * - key: Returns the name of the primary key for the model + * - fields: Returns the model schema + * - validates: returns the list of fields that are required + * - errors: returns the list of validation errors * * If the $field parameter is passed if will return the information for that sole field. * - * `$this->_introspectModel('Post', 'fields', 'title');` will return the schema information for title column + * `$this->_introspectModel('Post', 'fields', 'title');` will return the schema information for title column * * @param string $model name of the model to extract information from * @param string $key name of the special information key to obtain (key, fields, validates, errors)