Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Doc block updates for BufferedIterator.
  • Loading branch information
markstory committed Sep 22, 2014
1 parent e7f12d2 commit 7a428ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Collection/Iterator/BufferedIterator.php
Expand Up @@ -18,8 +18,8 @@
use SplDoublyLinkedList;

/**
* Creates an iterator from another iterator that will keep in memory the results
* from the inner iterator so they don't have to be calculated again.
* Creates an iterator from another iterator that will keep the results of the inner
* iterator in memory, so that results don't have to be re-calculated.
*/
class BufferedIterator extends Collection {

Expand Down Expand Up @@ -60,7 +60,7 @@ class BufferedIterator extends Collection {
protected $_started = false;

/**
* Whether or not the internal iterator's has reached its end
* Whether or not the internal iterator has reached its end.
*
* @var boolean
*/
Expand Down

0 comments on commit 7a428ca

Please sign in to comment.