Skip to content

Commit 2b0333f

Browse files
committed
Fix docfx warnings in IndexWriter
1 parent 89f5f07 commit 2b0333f

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/Lucene.Net/Index/IndexWriter.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ namespace Lucene.Net.Index
9797
/// also trigger one or more segment merges which by default
9898
/// run with a background thread so as not to block the
9999
/// addDocument calls (see <a href="#mergePolicy">below</a>
100-
/// for changing the <see cref="mergeScheduler"/>).</para>
100+
/// for changing the <see cref="LiveIndexWriterConfig.MergeScheduler"/>).</para>
101101
///
102102
/// <para>Opening an <see cref="IndexWriter"/> creates a lock file for the directory in use. Trying to open
103103
/// another <see cref="IndexWriter"/> on the same directory will lead to a
@@ -123,8 +123,8 @@ namespace Lucene.Net.Index
123123
///
124124
/// <a name="mergePolicy"></a> <para>Expert:
125125
/// <see cref="IndexWriter"/> allows you to separately change
126-
/// the <see cref="mergePolicy"/> and the <see cref="mergeScheduler"/>.
127-
/// The <see cref="mergePolicy"/> is invoked whenever there are
126+
/// the <see cref="LiveIndexWriterConfig.MergePolicy"/> and the <see cref="LiveIndexWriterConfig.MergeScheduler"/>.
127+
/// The <see cref="LiveIndexWriterConfig.MergePolicy"/> is invoked whenever there are
128128
/// changes to the segments in the index. Its role is to
129129
/// select which merges to do, if any, and return a
130130
/// <see cref="MergePolicy.MergeSpecification"/> describing the merges.
@@ -2285,7 +2285,7 @@ public virtual void ForceMerge(int maxNumSegments)
22852285
/// Just like <see cref="ForceMerge(int)"/>, except you can
22862286
/// specify whether the call should block until
22872287
/// all merging completes. This is only meaningful with a
2288-
/// <see cref="mergeScheduler"/> that is able to run merges in
2288+
/// <see cref="LiveIndexWriterConfig.MergeScheduler"/> that is able to run merges in
22892289
/// background threads.
22902290
///
22912291
/// <para><b>NOTE</b>: if this method hits an <see cref="OutOfMemoryException"/>
@@ -2566,16 +2566,16 @@ public virtual void ForceMergeDeletes()
25662566
}
25672567

25682568
/// <summary>
2569-
/// Expert: asks the <see cref="mergePolicy"/> whether any merges are
2569+
/// Expert: asks the <see cref="LiveIndexWriterConfig.MergePolicy"/> whether any merges are
25702570
/// necessary now and if so, runs the requested merges and
25712571
/// then iterate (test again if merges are needed) until no
2572-
/// more merges are returned by the <see cref="mergePolicy"/>.
2572+
/// more merges are returned by the <see cref="LiveIndexWriterConfig.MergePolicy"/>.
25732573
/// <para/>
25742574
/// Explicit calls to <see cref="MaybeMerge()"/> are usually not
25752575
/// necessary. The most common case is when merge policy
25762576
/// parameters have changed.
25772577
/// <para/>
2578-
/// this method will call the <see cref="mergePolicy"/> with
2578+
/// this method will call the <see cref="LiveIndexWriterConfig.MergePolicy"/> with
25792579
/// <see cref="MergeTrigger.EXPLICIT"/>.
25802580
///
25812581
/// <para><b>NOTE</b>: if this method hits an <see cref="OutOfMemoryException"/>
@@ -2676,7 +2676,7 @@ public virtual ICollection<SegmentCommitInfo> MergingSegments
26762676
}
26772677

26782678
/// <summary>
2679-
/// Expert: the <see cref="mergeScheduler"/> calls this method to retrieve the next
2679+
/// Expert: the <see cref="LiveIndexWriterConfig.MergeScheduler"/> calls this method to retrieve the next
26802680
/// merge requested by the <see cref="MergePolicy"/>
26812681
/// <para/>
26822682
/// @lucene.experimental

0 commit comments

Comments
 (0)