From a6bd1334130ac6db476072d6a4a0b0fab23b22ac Mon Sep 17 00:00:00 2001 From: euromark Date: Sun, 2 Nov 2014 22:41:17 +0100 Subject: [PATCH] Correct typos. --- lib/Cake/View/Helper/PaginatorHelper.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Cake/View/Helper/PaginatorHelper.php b/lib/Cake/View/Helper/PaginatorHelper.php index 167fbc1c205..43c29a14fda 100644 --- a/lib/Cake/View/Helper/PaginatorHelper.php +++ b/lib/Cake/View/Helper/PaginatorHelper.php @@ -959,16 +959,16 @@ public function last($last = 'last >>', $options = array()) { } /** - * 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 @@ public function last($last = 'last >>', $options = array()) { * - `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;