@@ -411,7 +411,7 @@ public static DirectoryReader Open(Directory directory)
411411 /// <param name="directory"> the index directory </param>
412412 /// <param name="termInfosIndexDivisor"> Subsamples which indexed
413413 /// terms are loaded into RAM. this has the same effect as
414- /// <see cref="LiveIndexWriterConfig.TermIndexInterval"/>
414+ /// <see cref="LiveIndexWriterConfig.TermIndexInterval"/>
415415 /// (which can be set on <see cref="IndexWriterConfig"/>) except that setting
416416 /// must be done at indexing time while this setting can be
417417 /// set per reader. When set to <c>N</c>, then one in every
@@ -452,7 +452,7 @@ public static DirectoryReader Open(IndexWriter writer, bool applyAllDeletes)
452452
453453 /// <summary>
454454 /// Expert: returns an <see cref="IndexReader"/> reading the index in the given
455- /// <see cref="IndexCommit"/>.
455+ /// <see cref="IndexCommit"/>.
456456 /// </summary>
457457 /// <param name="commit"> the commit point to open </param>
458458 /// <exception cref="IOException"> if there is a low-level IO error </exception>
@@ -468,7 +468,7 @@ public static DirectoryReader Open(IndexCommit commit)
468468 /// <param name="commit"> the commit point to open </param>
469469 /// <param name="termInfosIndexDivisor"> Subsamples which indexed
470470 /// terms are loaded into RAM. this has the same effect as
471- /// <see cref="LiveIndexWriterConfig.TermIndexInterval"/>
471+ /// <see cref="LiveIndexWriterConfig.TermIndexInterval"/>
472472 /// (which can be set in <see cref="IndexWriterConfig"/>) except that setting
473473 /// must be done at indexing time while this setting can be
474474 /// set per reader. When set to <c>N</c>, then one in every
@@ -540,7 +540,7 @@ public Terms GetTermVector(int docID, string field)
540540 /// <b>NOTE:</b> for performance reasons, this method does not check if the
541541 /// requested document is deleted, and therefore asking for a deleted document
542542 /// may yield unspecified results. Usually this is not required, however you
543- /// can test if the doc is deleted by checking the
543+ /// can test if the doc is deleted by checking the
544544 /// <see cref="Util.IBits"/> returned from <see cref="MultiFields.GetLiveDocs"/>.
545545 /// <para/>
546546 /// <b>NOTE:</b> only the content of a field is returned,
@@ -591,13 +591,13 @@ public void Dispose()
591591
592592 /// <summary>
593593 /// Closes files associated with this index.
594- /// This method implements the disposable pattern.
594+ /// This method implements the disposable pattern.
595595 /// It may be overridden to dispose any managed or unmanaged resources,
596596 /// but be sure to call <c>base.Dispose(disposing)</c> to close files associated with the
597597 /// underlying <see cref="IndexReader"/>.
598598 /// </summary>
599- /// <param name="disposing"><c>true</c> indicates to dispose all managed
600- /// and unmanaged resources, <c>false</c> indicates dispose unmanaged
599+ /// <param name="disposing"><c>true</c> indicates to dispose all managed
600+ /// and unmanaged resources, <c>false</c> indicates dispose unmanaged
601601 /// resources only</param>
602602 protected virtual void Dispose ( bool disposing )
603603 {
@@ -619,7 +619,7 @@ protected virtual void Dispose(bool disposing)
619619 }
620620
621621#if ! FEATURE_CONDITIONALWEAKTABLE_ENUMERATOR
622- // LUCENENET specific - since .NET Standard 2.0 and .NET Framework don't have a CondtionalWeakTable enumerator,
622+ // LUCENENET specific - since .NET Standard 2.0 and .NET Framework don't have a ConditionalWeakTable enumerator,
623623 // we use a weak event to retrieve the ConditionalWeakTable items
624624 foreach ( var getParentReadersEvent in getParentReadersEvents )
625625 getParentReadersEvent . Unsubscribe ( OnGetParentReaders ) ;
@@ -636,7 +636,7 @@ protected virtual void Dispose(bool disposing)
636636 protected internal abstract void DoClose ( ) ;
637637
638638#if ! FEATURE_CONDITIONALWEAKTABLE_ENUMERATOR
639- // LUCENENET specific - since .NET Standard 2.0 and .NET Framework don't have a CondtionalWeakTable enumerator,
639+ // LUCENENET specific - since .NET Standard 2.0 and .NET Framework don't have a ConditionalWeakTable enumerator,
640640 // we use a weak event to retrieve the ConditionalWeakTable items
641641 [ ExcludeFromRamUsageEstimation ]
642642 private readonly ISet < WeakEvents . GetParentReadersEvent > getParentReadersEvents = new JCG . HashSet < WeakEvents . GetParentReadersEvent > ( ) ;
@@ -699,10 +699,10 @@ private void OnGetCacheKeys(WeakEvents.GetCacheKeysEventArgs e)
699699 public IList < AtomicReaderContext > Leaves => Context. Leaves;
700700
701701 /// <summary>
702- /// Expert: Returns a key for this <see cref="IndexReader"/>, so
702+ /// Expert: Returns a key for this <see cref="IndexReader"/>, so
703703 /// <see cref="Search.FieldCache"/>/<see cref="Search.CachingWrapperFilter"/> can find
704704 /// it again.
705- /// This key must not have Equals()/GetHashCode() methods,
705+ /// This key must not have Equals()/GetHashCode() methods,
706706 /// so "equals" means "identical".
707707 /// </summary>
708708 public virtual object CoreCacheKey =>
@@ -713,7 +713,7 @@ private void OnGetCacheKeys(WeakEvents.GetCacheKeysEventArgs e)
713713 /// <summary>
714714 /// Expert: Returns a key for this <see cref="IndexReader"/> that also includes deletions,
715715 /// so <see cref="Search.IFieldCache"/>/<see cref="Search.CachingWrapperFilter"/> can find it again.
716- /// This key must not have Equals()/GetHashCode() methods,
716+ /// This key must not have Equals()/GetHashCode() methods,
717717 /// so "equals" means "identical".
718718 /// </summary>
719719 public virtual object CombinedCoreAndDeletesKey =>
0 commit comments