Skip to content

Commit

Permalink
Merge pull request #62 from RomanKonz/patch-1
Browse files Browse the repository at this point in the history
fixed variable name in Paginator.md
  • Loading branch information
Ocramius committed Mar 21, 2013
2 parents f19e2fa + 37269cb commit 82af549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/Paginator.md
Expand Up @@ -12,7 +12,7 @@ use DoctrineMongoODMModule\Paginator\Adapter\DoctrinePaginator;
$cursor = $documentManager->getRepository('Users')->findAll(); $cursor = $documentManager->getRepository('Users')->findAll();


// Create the pagination adapter // Create the pagination adapter
$paginationAdapter = DoctrinePaginator($cursor); $adapter = DoctrinePaginator($cursor);


// Create the paginator itself // Create the paginator itself
$paginator = new Paginator($adapter); $paginator = new Paginator($adapter);
Expand Down

0 comments on commit 82af549

Please sign in to comment.