Lucene.Net.Join: fix documentation comment formatting problems
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/bbac4318 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/bbac4318 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/bbac4318 Branch: refs/heads/api-work Commit: bbac43182e6b3338a5be59f6096df725d6c10378 Parents: 2721759 Author: Shad Storhaug <[email protected]> Authored: Sun Feb 5 12:32:37 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Sun Feb 5 14:47:50 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net.Join/TermsCollector.cs | 2 +- src/Lucene.Net.Join/TermsWithScoreCollector.cs | 3 ++- src/Lucene.Net.Join/ToParentBlockJoinCollector.cs | 2 +- src/Lucene.Net.Join/ToParentBlockJoinQuery.cs | 3 +-- 4 files changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/bbac4318/src/Lucene.Net.Join/TermsCollector.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Join/TermsCollector.cs b/src/Lucene.Net.Join/TermsCollector.cs index 8549465..449b128 100644 --- a/src/Lucene.Net.Join/TermsCollector.cs +++ b/src/Lucene.Net.Join/TermsCollector.cs @@ -70,7 +70,7 @@ namespace Lucene.Net.Join /// Called before collecting from each <see cref="AtomicReaderContext"/>. All doc ids in /// <see cref="Collect(int)"/> will correspond to <see cref="Index.IndexReaderContext.Reader"/>. /// - /// Add <see cref="AtomicReaderContext#docBase"/> to the current <see cref="Index.IndexReaderContext.Reader"/>'s + /// Add <see cref="AtomicReaderContext.DocBase"/> to the current <see cref="Index.IndexReaderContext.Reader"/>'s /// internal document id to re-base ids in <see cref="Collect(int)"/>. /// </summary> /// <param name="context">next atomic reader context </param> http://git-wip-us.apache.org/repos/asf/lucenenet/blob/bbac4318/src/Lucene.Net.Join/TermsWithScoreCollector.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Join/TermsWithScoreCollector.cs b/src/Lucene.Net.Join/TermsWithScoreCollector.cs index be2c943..d2581f9 100644 --- a/src/Lucene.Net.Join/TermsWithScoreCollector.cs +++ b/src/Lucene.Net.Join/TermsWithScoreCollector.cs @@ -85,7 +85,7 @@ namespace Lucene.Net.Join /// Called before collecting from each <see cref="AtomicReaderContext"/>. All doc ids in /// <see cref="Collect(int)"/> will correspond to <see cref="Index.IndexReaderContext.Reader"/>. /// - /// Add <see cref="AtomicReaderContext#docBase"/> to the current <see cref="Index.IndexReaderContext.Reader"/>'s + /// Add <see cref="AtomicReaderContext.DocBase"/> to the current <see cref="Index.IndexReaderContext.Reader"/>'s /// internal document id to re-base ids in <see cref="Collect(int)"/>. /// </summary> /// <param name="context">next atomic reader context </param> @@ -102,6 +102,7 @@ namespace Lucene.Net.Join /// </summary> /// <param name="field">The field to collect terms for.</param> /// <param name="multipleValuesPerDocument">Whether the field to collect terms for has multiple values per document.</param> + /// <param name="scoreMode">See <see cref="ScoreMode"/></param> /// <returns>A <see cref="TermsWithScoreCollector"/> instance</returns> internal static TermsWithScoreCollector Create(string field, bool multipleValuesPerDocument, ScoreMode scoreMode) { http://git-wip-us.apache.org/repos/asf/lucenenet/blob/bbac4318/src/Lucene.Net.Join/ToParentBlockJoinCollector.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Join/ToParentBlockJoinCollector.cs b/src/Lucene.Net.Join/ToParentBlockJoinCollector.cs index 77a38cf..46847de 100644 --- a/src/Lucene.Net.Join/ToParentBlockJoinCollector.cs +++ b/src/Lucene.Net.Join/ToParentBlockJoinCollector.cs @@ -68,7 +68,7 @@ namespace Lucene.Net.Join /// join. The <see cref="TopGroups{T}"/> of the nested joins will not be /// correct.</para> /// - /// See <see cref="org.apache.lucene.search.join"/> for a code + /// See <a href="http://lucene.apache.org/core/4_8_0/join/">http://lucene.apache.org/core/4_8_0/join/</a> for a code /// sample. /// /// @lucene.experimental http://git-wip-us.apache.org/repos/asf/lucenenet/blob/bbac4318/src/Lucene.Net.Join/ToParentBlockJoinQuery.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Join/ToParentBlockJoinQuery.cs b/src/Lucene.Net.Join/ToParentBlockJoinQuery.cs index 44485d9..3dea9b6 100644 --- a/src/Lucene.Net.Join/ToParentBlockJoinQuery.cs +++ b/src/Lucene.Net.Join/ToParentBlockJoinQuery.cs @@ -61,14 +61,13 @@ namespace Lucene.Net.Join /// from <see cref="ToParentBlockJoinCollector"/> will not contain every /// child for parents that had matched.</para> /// - /// <para>See <see cref="org.apache.lucene.search.join"/> for an + /// <para>See <a href="http://lucene.apache.org/core/4_8_0/join/">http://lucene.apache.org/core/4_8_0/join/</a> for an /// overview. </para> /// /// @lucene.experimental /// </summary> public class ToParentBlockJoinQuery : Query { - private readonly Filter _parentsFilter; private readonly Query _childQuery;
