diff --git a/cake/libs/view/helpers/html.php b/cake/libs/view/helpers/html.php index ae4261edf7d..d6a4a2c75f9 100644 --- a/cake/libs/view/helpers/html.php +++ b/cake/libs/view/helpers/html.php @@ -550,7 +550,7 @@ function scriptEnd() { * Builds CSS style data from an array of CSS properties * * @param array $data Style data array - * @param boolean $online Whether or not the style block should be displayed on one line. + * @param boolean $oneline Whether or not the style block should be displayed on one line. * @return string CSS styling data * @access public */ @@ -747,7 +747,7 @@ function tag($name, $text = null, $options = array()) { * @param string $class CSS class name of the div element. * @param string $text String content that will appear inside the div element. * If null, only a start tag will be printed - * @param array $attributes Additional HTML attributes of the DIV tag + * @param array $options Additional HTML attributes of the DIV tag * @return string The formatted DIV element * @access public */ @@ -767,7 +767,7 @@ function div($class = null, $text = null, $options = array()) { * * @param string $class CSS class name of the p element. * @param string $text String content that will appear inside the p element. - * @param array $attributes Additional HTML attributes of the P tag + * @param array $options Additional HTML attributes of the P tag * @return string The formatted P element * @access public */