Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Danielpk committed Oct 27, 2011
1 parent 24fd873 commit 24bb666
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/Cake/View/View.php
Expand Up @@ -136,7 +136,7 @@ class View extends Object {

/**
* Sub-directory for this view file. This is often used for extension based routing.
* for example with an `xml` extension, $subDir would be `xml/`
* Eg. With an `xml` extension, $subDir would be `xml/`
*
* @var string
*/
Expand All @@ -158,7 +158,7 @@ class View extends Object {
public $cacheAction = false;

/**
* holds current errors for the model validation
* Holds current errors for the model validation.
*
* @var array
*/
Expand All @@ -172,7 +172,7 @@ class View extends Object {
public $hasRendered = false;

/**
* List of generated DOM UUIDs
* List of generated DOM UUIDs.
*
* @var array
*/
Expand Down Expand Up @@ -205,7 +205,7 @@ class View extends Object {
public $elementCache = 'default';

/**
* List of variables to collect from the associated controller
* List of variables to collect from the associated controller.
*
* @var array
*/
Expand All @@ -215,7 +215,7 @@ class View extends Object {
);

/**
* Scripts (and/or other <head /> tags) for the layout
* Scripts (and/or other <head /> tags) for the layout.
*
* @var array
*/
Expand All @@ -229,7 +229,7 @@ class View extends Object {
protected $_paths = array();

/**
* boolean to indicate that helpers have been loaded.
* Indicate that helpers have been loaded.
*
* @var boolean
*/
Expand All @@ -238,7 +238,7 @@ class View extends Object {
/**
* Constructor
*
* @param Controller $controller A controller object to pull View::__passedArgs from.
* @param Controller $controller A controller object to pull View::_passedArgs from.
*/
public function __construct($controller) {
if (is_object($controller)) {
Expand Down Expand Up @@ -337,7 +337,7 @@ public function element($name, $data = array(), $options = array()) {
* Renders view for given view file and layout.
*
* Render triggers helper callbacks, which are fired before and after the view are rendered,
* as well as before and after the layout. The helper callbacks are called
* as well as before and after the layout. The helper callbacks are called:
*
* - `beforeRender`
* - `afterRender`
Expand Down

0 comments on commit 24bb666

Please sign in to comment.