diff --git a/.github/linters/codespell.txt b/.github/linters/codespell.txt
index 6e4b9d3369..0124e73456 100644
--- a/.github/linters/codespell.txt
+++ b/.github/linters/codespell.txt
@@ -107,13 +107,9 @@ coo
corelate
corespondent
correcty
-correponding
-corrsponding
corse
couldnt
countr
-couterpart
-coversion
covert
cunt
curren
@@ -129,16 +125,11 @@ dependant
despatch
despatches
detecing
-dicationary
didnt
-differnetly
diposing
discreet
discus
displaing
-docuentation
-documenation
-documention
doen
doens't
doesnt
@@ -407,8 +398,6 @@ sizin
slippy
som
somme
-speacial
-specifc
specifiy
splitted
statics
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index b1ee26a205..2fae5729a9 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -296,7 +296,7 @@ stages:
displayName: 'Generate Documentation'
- task: ArchiveFiles@2
- displayName: 'Zip Documenation Files'
+ displayName: 'Zip Documentation Files'
inputs:
rootFolderOrFile: '$(Build.SourcesDirectory)/websites/apidocs/_site'
includeRootFolder: false
diff --git a/src/Lucene.Net.Analysis.Common/Analysis/In/IndicNormalizer.cs b/src/Lucene.Net.Analysis.Common/Analysis/In/IndicNormalizer.cs
index 0de0078030..1d9d5a1ef7 100644
--- a/src/Lucene.Net.Analysis.Common/Analysis/In/IndicNormalizer.cs
+++ b/src/Lucene.Net.Analysis.Common/Analysis/In/IndicNormalizer.cs
@@ -33,7 +33,7 @@ namespace Lucene.Net.Analysis.In
///
public class IndicNormalizer
{
- // LUCENENET NOTE: This class was refactored from its Java couterpart,
+ // LUCENENET NOTE: This class was refactored from its Java counterpart,
// favoring the .NET Regex class to determine the "Unicode Block" rather than
// porting over that part of the Java Character class.
// References:
diff --git a/src/Lucene.Net.Analysis.Kuromoji/Dict/BinaryDictionary.cs b/src/Lucene.Net.Analysis.Kuromoji/Dict/BinaryDictionary.cs
index f1ba93df73..58b70e51ff 100644
--- a/src/Lucene.Net.Analysis.Kuromoji/Dict/BinaryDictionary.cs
+++ b/src/Lucene.Net.Analysis.Kuromoji/Dict/BinaryDictionary.cs
@@ -31,7 +31,7 @@ namespace Lucene.Net.Analysis.Ja.Dict
///
/// Base class for a binary-encoded in-memory dictionary.
///
- /// NOTE: To use an alternate dicationary than the built-in one, put the data files in a subdirectory of
+ /// NOTE: To use an alternate dictionary than the built-in one, put the data files in a subdirectory of
/// your application named "kuromoji-data". This subdirectory
/// can be placed in any directory up to and including the root directory (if the OS permission allows).
/// To place the files in an alternate location, set an environment variable named "kuromoji.data.dir"
diff --git a/src/Lucene.Net.Analysis.OpenNLP/overview.md b/src/Lucene.Net.Analysis.OpenNLP/overview.md
index 52f54e30db..33e23f4b6f 100644
--- a/src/Lucene.Net.Analysis.OpenNLP/overview.md
+++ b/src/Lucene.Net.Analysis.OpenNLP/overview.md
@@ -115,7 +115,7 @@ public class CustomOpenNLPAnalyzer : OpenNLPTokenizerFactory
}
```
-In the above example, `CustomOpenNLPAnalyzer` extends `OpenNLPTokenizerFactory` (assuming that's the analyzer you're using), and it wraps the OpenNLP tokenizer with UIMA annotators. You'll need to replace the placeholder methods (`CreateUIMASentenceAnnotator` and `CreateUIMATokenAnnotator`) with the actual code to create and configure your UIMA annotators. Please note that configuring NLP can be complex. See the [OpenNLP 1.9.4 Manual](https://opennlp.apache.org/docs/1.9.4/manual/opennlp.html) and [OpenNLP UIMA 1.9.4 API Documention](https://opennlp.apache.org/docs/1.9.4/apidocs/opennlp-uima/index.html) for details.
+In the above example, `CustomOpenNLPAnalyzer` extends `OpenNLPTokenizerFactory` (assuming that's the analyzer you're using), and it wraps the OpenNLP tokenizer with UIMA annotators. You'll need to replace the placeholder methods (`CreateUIMASentenceAnnotator` and `CreateUIMATokenAnnotator`) with the actual code to create and configure your UIMA annotators. Please note that configuring NLP can be complex. See the [OpenNLP 1.9.4 Manual](https://opennlp.apache.org/docs/1.9.4/manual/opennlp.html) and [OpenNLP UIMA 1.9.4 API Documentation](https://opennlp.apache.org/docs/1.9.4/apidocs/opennlp-uima/index.html) for details.
> [!NOTE]
> IKVM (and ``) does not support Java SE higher than version 8. So it will not be possible to add a `` to OpenNLP 2.x until support is added for it in IKVM.
diff --git a/src/Lucene.Net.Analysis.Phonetic/Language/StringEncoder.cs b/src/Lucene.Net.Analysis.Phonetic/Language/StringEncoder.cs
index b386d93440..01c68db54c 100644
--- a/src/Lucene.Net.Analysis.Phonetic/Language/StringEncoder.cs
+++ b/src/Lucene.Net.Analysis.Phonetic/Language/StringEncoder.cs
@@ -28,7 +28,7 @@ public interface IStringEncoder
///
/// the to encode
/// the encoded
- // LUCENENET specific - EncoderException not ported, as it was only thrown on a coversion from object to string type
+ // LUCENENET specific - EncoderException not ported, as it was only thrown on a conversion from object to string type
// thrown if there is an error condition during the encoding process.
string Encode(string source);
}
diff --git a/src/Lucene.Net.Analysis.SmartCn/AnalyzerProfile.cs b/src/Lucene.Net.Analysis.SmartCn/AnalyzerProfile.cs
index 0494c5c0c3..9c9eb2eb04 100644
--- a/src/Lucene.Net.Analysis.SmartCn/AnalyzerProfile.cs
+++ b/src/Lucene.Net.Analysis.SmartCn/AnalyzerProfile.cs
@@ -28,7 +28,7 @@ namespace Lucene.Net.Analysis.Cn.Smart
///
/// has a built-in dictionary and stopword list out-of-box.
///
- /// NOTE: To use an alternate dicationary than the built-in one, put the "bigramdict.dct" and
+ /// NOTE: To use an alternate dictionary than the built-in one, put the "bigramdict.dct" and
/// "coredict.dct" files in a subdirectory of your application named "smartcn-data". This subdirectory
/// can be placed in any directory up to and including the root directory (if the OS permission allows).
/// To place the files in an alternate location, set an environment variable named "smartcn.data.dir"
diff --git a/src/Lucene.Net.Highlighter/Highlight/WeightedSpanTermExtractor.cs b/src/Lucene.Net.Highlighter/Highlight/WeightedSpanTermExtractor.cs
index d3ed00028e..da76fb6d76 100644
--- a/src/Lucene.Net.Highlighter/Highlight/WeightedSpanTermExtractor.cs
+++ b/src/Lucene.Net.Highlighter/Highlight/WeightedSpanTermExtractor.cs
@@ -222,7 +222,7 @@ protected virtual void Extract(Query query, IDictionary
Query rewritten = query.Rewrite(reader);
if (rewritten != query)
{
- // only rewrite once and then flatten again - the rewritten query could have a speacial treatment
+ // only rewrite once and then flatten again - the rewritten query could have a special treatment
// if this method is overwritten in a subclass.
Flatten(rewritten, reader, flatQueries);
diff --git a/src/Lucene.Net.TestFramework/Util/LuceneTestCase.cs b/src/Lucene.Net.TestFramework/Util/LuceneTestCase.cs
index 708223908d..f20c4f7c2e 100644
--- a/src/Lucene.Net.TestFramework/Util/LuceneTestCase.cs
+++ b/src/Lucene.Net.TestFramework/Util/LuceneTestCase.cs
@@ -1308,9 +1308,9 @@ public static ISet