diff options
author | Zeev Suraski <zeev@php.net> | 2004-05-30 17:32:32 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2004-05-30 17:32:32 +0000 |
commit | e11b518c95f4cfa26c4722df6eb3a46cfb57f272 (patch) | |
tree | d633b53fe9fa78e49eaabf1614473e7f956feeb9 /ext/spl/spl_iterators.c | |
parent | 2e7e8f30fca390837cf3676bff0bd51755d47b08 (diff) | |
download | php-git-e11b518c95f4cfa26c4722df6eb3a46cfb57f272.tar.gz |
Fix prototype
Diffstat (limited to 'ext/spl/spl_iterators.c')
-rwxr-xr-x | ext/spl/spl_iterators.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/spl_iterators.c b/ext/spl/spl_iterators.c index 3eb1b50dd4..4abf27f375 100755 --- a/ext/spl/spl_iterators.c +++ b/ext/spl/spl_iterators.c @@ -985,7 +985,7 @@ static INLINE void spl_limit_it_seek(spl_dual_it_object *intern, long pos TSRMLS } } -/* {{{ proto LimitIterator:__construct(Iterator $it [, int $offset, int $count]) +/* {{{ proto LimitIterator::__construct(Iterator $it [, int $offset, int $count]) Construct a LimitIterator from an Iterator with a given starting offset and optionally a maximum count */ SPL_METHOD(LimitIterator, __construct) { |