Skip to content

Commit

Permalink
fix paginate example, f3-factory#28
Browse files Browse the repository at this point in the history
  • Loading branch information
ikkez committed Jan 3, 2014
1 parent 7947404 commit 67adb24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cursor/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ the total number of records found, the specified limit `$size`, the number of su
For example:

```php
$result = $mapper->paginate(0, 2);
$result = $mapper->paginate(0, 3);
/*
array(4) {
["subset"] => array(2) {
Expand All @@ -198,7 +198,7 @@ array(4) {
}
*/

$result = $mapper->paginate(1, 2);
$result = $mapper->paginate(1, 3);
/*
array(4) {
["subset"] => array(2) {
Expand Down

0 comments on commit 67adb24

Please sign in to comment.