http://git-wip-us.apache.org/repos/asf/lucy/blob/500e7ae7/core/Lucy/Util/Debug.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Util/Debug.cfh b/core/Lucy/Util/Debug.cfh index 9e81d04..1b61594 100644 --- a/core/Lucy/Util/Debug.cfh +++ b/core/Lucy/Util/Debug.cfh @@ -98,7 +98,7 @@ __C__ /** Abort on error if test fails. * - * Note: unlike the system assert(), this ASSERT() is #ifdef LUCY_DEBUG. + * Note: unlike the system assert(), this [](cfish:.ASSERT) is #ifdef LUCY_DEBUG. */ #define LUCY_ASSERT(test , args...) \ do { \
http://git-wip-us.apache.org/repos/asf/lucy/blob/500e7ae7/core/Lucy/Util/Freezer.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Util/Freezer.cfh b/core/Lucy/Util/Freezer.cfh index 5de2474..e3992e8 100644 --- a/core/Lucy/Util/Freezer.cfh +++ b/core/Lucy/Util/Freezer.cfh @@ -43,7 +43,7 @@ inert class Lucy::Util::Freezer { /** Return a representation of the object using only scalars, hashes, and * arrays. Some classes support JSON serialization via dump() and its * companion, load(); for others, dump() is only a debugging aid. - * The default simply calls To_String(). + * The default simply calls [](cfish:.To_String). */ inert incremented Obj* dump(Obj *obj); http://git-wip-us.apache.org/repos/asf/lucy/blob/500e7ae7/core/Lucy/Util/PriorityQueue.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Util/PriorityQueue.cfh b/core/Lucy/Util/PriorityQueue.cfh index 2480bb5..1d19d32 100644 --- a/core/Lucy/Util/PriorityQueue.cfh +++ b/core/Lucy/Util/PriorityQueue.cfh @@ -53,8 +53,8 @@ class Lucy::Util::PriorityQueue nickname PriQ bool Insert(PriorityQueue *self, decremented Obj *element); - /** Equivalent to Insert(), except for the return value. If the Queue has - * room, the element is inserted and Jostle() returns NULL. If not, then + /** Equivalent to [](cfish:.Insert), except for the return value. If the Queue has + * room, the element is inserted and [](cfish:.Jostle) returns NULL. If not, then * the item which falls out of the bottom of the Queue is returned. */ incremented nullable Obj* http://git-wip-us.apache.org/repos/asf/lucy/blob/500e7ae7/core/Lucy/Util/SortExternal.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Util/SortExternal.cfh b/core/Lucy/Util/SortExternal.cfh index 7e8439b..29ffebe 100644 --- a/core/Lucy/Util/SortExternal.cfh +++ b/core/Lucy/Util/SortExternal.cfh @@ -19,19 +19,19 @@ parcel Lucy; /** Abstract external sorter. * * SortExternal objects are sort pools which allow you to sort huge - * collections of elements. To achieve this, you Feed() all items into the - * SortExternal object, Flip() it from write mode to read mode, then Fetch() + * collections of elements. To achieve this, you [](cfish:.Feed) all items into the + * SortExternal object, [](cfish:.Flip) it from write mode to read mode, then [](cfish:.Fetch) * the elements one at a time in sorted order. * * It's expected that the total memory footprint of the buffered sortable * items will eventually exceed a specified threshold; at that point, the - * SortExternal object will call the abstract method Flush(). It's expected - * that Flush() implementations will empty out the current buffer, write a + * SortExternal object will call the abstract method [](cfish:.Flush). It's expected + * that [](cfish:.Flush) implementations will empty out the current buffer, write a * sorted "run" to external storage, and add a new child SortExternal object * to the top level object's "runs" array to represent the flushed content. * * During the read phase, the child sortex objects retrieve elements from - * external storage by calling the abstract method Refill(). The top-level + * external storage by calling the abstract method [](cfish:.Refill). The top-level * SortExternal object then interleaves multiple sorted streams to produce a * single unified stream of sorted items. */ @@ -63,7 +63,7 @@ abstract class Lucy::Util::SortExternal nickname SortEx * * Presumably this entails sorting everything, writing the sorted elements * to disk, spawning a child object to represent those elements, and - * adding that child to the top-level object via Add_Run(). + * adding that child to the top-level object via [](cfish:.Add_Run). */ abstract void Flush(SortExternal *self); @@ -79,13 +79,13 @@ abstract class Lucy::Util::SortExternal nickname SortEx Flip(SortExternal *self); /** Fetch the next sorted item from the sort pool. Invalid prior to - * calling Flip(). Returns NULL when all elements have been exhausted. + * calling [](cfish:.Flip). Returns NULL when all elements have been exhausted. */ incremented nullable Obj* Fetch(SortExternal *self); /** Preview the next item that Fetch will return, but don't pop it. - * Invalid prior to calling Flip(). + * Invalid prior to calling [](cfish:.Flip). */ nullable Obj* Peek(SortExternal *self); http://git-wip-us.apache.org/repos/asf/lucy/blob/500e7ae7/core/Lucy/Util/Stepper.cfh ---------------------------------------------------------------------- diff --git a/core/Lucy/Util/Stepper.cfh b/core/Lucy/Util/Stepper.cfh index 36ed485..517118b 100644 --- a/core/Lucy/Util/Stepper.cfh +++ b/core/Lucy/Util/Stepper.cfh @@ -44,7 +44,7 @@ class Lucy::Util::Stepper inherits Clownfish::Obj { Reset(Stepper* self); /** Update internal state to reflect `value` and write a frame - * to `outstream` that can be read using Read_Key_Frame(). + * to `outstream` that can be read using [](cfish:.Read_Key_Frame). * * @param outstream An OutStream. * @param value State information. @@ -53,7 +53,7 @@ class Lucy::Util::Stepper inherits Clownfish::Obj { Write_Key_Frame(Stepper *self, OutStream *outstream, Obj *value); /** Update internal state to reflect `value` and write a frame - * to `outstream` that can be read using Read_Delta(). + * to `outstream` that can be read using [](cfish:.Read_Delta). * * @param outstream An OutStream. * @param value State information. http://git-wip-us.apache.org/repos/asf/lucy/blob/500e7ae7/core/LucyX/Search/MockMatcher.cfh ---------------------------------------------------------------------- diff --git a/core/LucyX/Search/MockMatcher.cfh b/core/LucyX/Search/MockMatcher.cfh index 27c23c6..4115575 100644 --- a/core/LucyX/Search/MockMatcher.cfh +++ b/core/LucyX/Search/MockMatcher.cfh @@ -29,7 +29,7 @@ class LucyX::Search::MockMatcher inherits Lucy::Search::Matcher { /** * @param doc_ids An array of matching doc ids. * @param scores Float scores corresponding to the doc ids array. If not - * supplied, calling Score() will throw an exception. + * supplied, calling [](cfish:.Score) will throw an exception. */ inert incremented MockMatcher* init(MockMatcher *self, I32Array *doc_ids, ByteBuf *scores = NULL); http://git-wip-us.apache.org/repos/asf/lucy/blob/500e7ae7/core/LucyX/Search/ProximityQuery.cfh ---------------------------------------------------------------------- diff --git a/core/LucyX/Search/ProximityQuery.cfh b/core/LucyX/Search/ProximityQuery.cfh index 904cd6a..f4e0584 100644 --- a/core/LucyX/Search/ProximityQuery.cfh +++ b/core/LucyX/Search/ProximityQuery.cfh @@ -18,7 +18,7 @@ parcel Lucy; /** Query matching an ordered list of terms. * - * ProximityQuery is a subclass of L<Lucy::Search::Query> for matching + * ProximityQuery is a subclass of [](cfish:Query) for matching * against an ordered sequence of terms. */
