Update pagination.md

Eror in Limit example
This commit is contained in:
Phill Price 2014-05-08 21:46:30 +01:00
parent 617827d3ed
commit adf478b4e9

View File

@ -87,7 +87,7 @@ To set the limit of items displayed in a paginated page use the `[api:PaginatedL
public function PaginatedPagesLimit() {
$paginatedItems = new PaginatedList(Page::get(), $this->request);
$paginatedItems->setPageLength(4);
return $pagination;
return $paginatedItems;
}
## Related