Fix StringIterator documentation
Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/c8e8fe08 Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/c8e8fe08 Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/c8e8fe08 Branch: refs/heads/master Commit: c8e8fe08bca11bcaf3925473dfee244c0dcfcb06 Parents: ebef22b Author: Nick Wellnhofer <[email protected]> Authored: Sat Aug 23 19:16:57 2014 +0200 Committer: Nick Wellnhofer <[email protected]> Committed: Tue Nov 11 16:08:32 2014 +0100 ---------------------------------------------------------------------- runtime/core/Clownfish/String.cfh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/c8e8fe08/runtime/core/Clownfish/String.cfh ---------------------------------------------------------------------- diff --git a/runtime/core/Clownfish/String.cfh b/runtime/core/Clownfish/String.cfh index a053e99..383f6b7 100644 --- a/runtime/core/Clownfish/String.cfh +++ b/runtime/core/Clownfish/String.cfh @@ -319,8 +319,8 @@ class Clownfish::StringIterator nickname StrIter new(String *string, size_t byte_offset); /** Return the substring between the top and tail iterators. - * @param offset Top iterator. Use start of string if NULL. - * @param len Tail iterator. Use end of string if NULL. + * @param top Top iterator. Use start of string if NULL. + * @param tail Tail iterator. Use end of string if NULL. */ inert incremented String* substring(StringIterator *top, StringIterator *tail);
