diff options
Diffstat (limited to 'ext/spl/spl.php')
-rwxr-xr-x | ext/spl/spl.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/spl/spl.php b/ext/spl/spl.php index 6ad94f7ea2..25b952ff31 100755 --- a/ext/spl/spl.php +++ b/ext/spl/spl.php @@ -358,8 +358,10 @@ class LimitIetrator implements Iterator /** Seek to a specific position if available or throw an exception. * If the inner iterator is an instance of SeekableIterator its seek() - * method will be used. Otherwise the iterator will me manually forwared - * and rewinded first if necessary. + * method will be used. Otherwise the iterator will be rewinded if + * necessary and then manually forwared element by element. + * + * \param $position index to seek to. */ function seek($position); |