Correct typos.

This commit is contained in:
euromark 2014-11-02 22:41:17 +01:00
parent e7f76a983a
commit a6bd133413

View file

@ -959,16 +959,16 @@ class PaginatorHelper extends AppHelper {
}
/**
* Returns the meta-links for a paginated result set
* Returns the meta-links for a paginated result set.
*
* `echo $this->Paginator->meta();`
*
* Echos the links directly, will output nothing of there is neither a previous nor next page.
* Echos the links directly, will output nothing if there is neither a previous nor next page.
*
* `$this->Paginator->meta(array('block' => true));`
*
* Will append the output of the meta function to the named block - if true is passed the "meta"
* block is used
* block is used.
*
* ### Options:
*
@ -976,7 +976,7 @@ class PaginatorHelper extends AppHelper {
* - `block` The block name to append the output to, or false/absenst to return as a string
*
* @param array $options Array of options
* @return string|null meta links
* @return string|null Meta links
*/
public function meta($options = array()) {
$model = isset($options['model']) ? $options['model'] : null;