You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2015/08/06 20:37:52 UTC

[6/6] lucy git commit: Fix remaining links to standalone documentation

Fix remaining links to standalone documentation


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/45eac391
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/45eac391
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/45eac391

Branch: refs/heads/master
Commit: 45eac391a21fa1d0f5b8e76f3aa9c03444f9838c
Parents: dcc6215
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Thu Aug 6 19:45:46 2015 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Thu Aug 6 20:27:38 2015 +0200

----------------------------------------------------------------------
 core/Lucy/Index/Indexer.cfh     | 4 ++--
 core/Lucy/Index/Posting.cfh     | 2 +-
 core/Lucy/Index/PostingList.cfh | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/45eac391/core/Lucy/Index/Indexer.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Index/Indexer.cfh b/core/Lucy/Index/Indexer.cfh
index b421c0c..4ee07ef 100644
--- a/core/Lucy/Index/Indexer.cfh
+++ b/core/Lucy/Index/Indexer.cfh
@@ -29,7 +29,7 @@ parcel Lucy;
  * identify itself by supplying an
  * [](cfish:IndexManager) with a unique
  * `host` id to Indexer's constructor or index corruption will
- * occur.  See [FileLocking](Lucy::Docs::FileLocking) for a detailed
+ * occur.  See [](FileLocking) for a detailed
  * discussion.
  *
  * Note: at present, [](cfish:.Delete_By_Term) and [](cfish:.Delete_By_Query) only affect
@@ -115,7 +115,7 @@ public class Lucy::Index::Indexer inherits Clownfish::Obj {
 
     /** Mark the document identified by the supplied document ID as deleted.
      *
-     * @param doc_id A [document id](Lucy::Docs::DocIDs).
+     * @param doc_id A [document id](DocIDs).
      */
     public void
     Delete_By_Doc_ID(Indexer *self, int32_t doc_id);

http://git-wip-us.apache.org/repos/asf/lucy/blob/45eac391/core/Lucy/Index/Posting.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Index/Posting.cfh b/core/Lucy/Index/Posting.cfh
index ff2a638..1c243bd 100644
--- a/core/Lucy/Index/Posting.cfh
+++ b/core/Lucy/Index/Posting.cfh
@@ -19,7 +19,7 @@ parcel Lucy;
 /** Vessel holding statistical data for a posting.
  *
  * A Posting, in Apache Lucy, is a vessel which stores information about a
- * term-document match.  (See [IRTheory](Lucy::Docs::IRTheory) for the
+ * term-document match.  (See [](IRTheory) for the
  * academic definition of "posting".)
  *
  * Subclasses include

http://git-wip-us.apache.org/repos/asf/lucy/blob/45eac391/core/Lucy/Index/PostingList.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Index/PostingList.cfh b/core/Lucy/Index/PostingList.cfh
index d5d80e6..609acf8 100644
--- a/core/Lucy/Index/PostingList.cfh
+++ b/core/Lucy/Index/PostingList.cfh
@@ -21,7 +21,7 @@ parcel Lucy;
  * PostingList is an iterator which supplies a list of document ids that match
  * a given term.
  *
- * See [IRTheory](Lucy::Docs::IRTheory) for definitions of "posting" and
+ * See [](IRTheory) for definitions of "posting" and
  * "posting list".
  */
 public class Lucy::Index::PostingList nickname PList