Repository: lucy-clownfish Updated Branches: refs/heads/documentation c66300d41 -> f50b736f9
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/3523d7d2 Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/3523d7d2 Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/3523d7d2 Branch: refs/heads/documentation Commit: 3523d7d250f77cb021a2755444b7ff7dc2ac8eae Parents: c66300d Author: Nick Wellnhofer <[email protected]> Authored: Sat Aug 23 19:16:57 2014 +0200 Committer: Nick Wellnhofer <[email protected]> Committed: Sun Aug 31 15:32:06 2014 +0200 ---------------------------------------------------------------------- runtime/core/Clownfish/String.cfh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3523d7d2/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);
