Lucene.Net.Analysis.Eu refactor: member accessibility and documentation comments
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/98edabe0 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/98edabe0 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/98edabe0 Branch: refs/heads/api-work Commit: 98edabe0d3f18db162f7b1c8c63d9c12e177ef2d Parents: 3d97e6a Author: Shad Storhaug <[email protected]> Authored: Fri Feb 3 11:31:34 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Fri Feb 3 11:31:34 2017 +0700 ---------------------------------------------------------------------- .../Analysis/Eu/BasqueAnalyzer.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/98edabe0/src/Lucene.Net.Analysis.Common/Analysis/Eu/BasqueAnalyzer.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Analysis.Common/Analysis/Eu/BasqueAnalyzer.cs b/src/Lucene.Net.Analysis.Common/Analysis/Eu/BasqueAnalyzer.cs index b6c20dc..029f798 100644 --- a/src/Lucene.Net.Analysis.Common/Analysis/Eu/BasqueAnalyzer.cs +++ b/src/Lucene.Net.Analysis.Common/Analysis/Eu/BasqueAnalyzer.cs @@ -50,7 +50,7 @@ namespace Lucene.Net.Analysis.Eu } /// <summary> - /// Atomically loads the DEFAULT_STOP_SET in a lazy fashion once the outer class + /// Atomically loads the <see cref="DEFAULT_STOP_SET"/> in a lazy fashion once the outer class /// accesses the static final set the first time.; /// </summary> private class DefaultSetHolder @@ -74,7 +74,7 @@ namespace Lucene.Net.Analysis.Eu } /// <summary> - /// Builds an analyzer with the default stop words: <see cref="#DEFAULT_STOPWORD_FILE"/>. + /// Builds an analyzer with the default stop words: <see cref="DEFAULT_STOPWORD_FILE"/>. /// </summary> public BasqueAnalyzer(LuceneVersion matchVersion) : this(matchVersion, DefaultSetHolder.DEFAULT_STOP_SET) @@ -84,7 +84,7 @@ namespace Lucene.Net.Analysis.Eu /// <summary> /// Builds an analyzer with the given stop words. /// </summary> - /// <param name="matchVersion"> lucene compatibility version </param> + /// <param name="matchVersion"> <see cref="LuceneVersion"/> lucene compatibility version </param> /// <param name="stopwords"> a stopword set </param> public BasqueAnalyzer(LuceneVersion matchVersion, CharArraySet stopwords) : this(matchVersion, stopwords, CharArraySet.EMPTY_SET) @@ -96,7 +96,7 @@ namespace Lucene.Net.Analysis.Eu /// provided this analyzer will add a <see cref="SetKeywordMarkerFilter"/> before /// stemming. /// </summary> - /// <param name="matchVersion"> lucene compatibility version </param> + /// <param name="matchVersion"> <see cref="LuceneVersion"/> lucene compatibility version </param> /// <param name="stopwords"> a stopword set </param> /// <param name="stemExclusionSet"> a set of terms not to be stemmed </param> public BasqueAnalyzer(LuceneVersion matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet) @@ -113,8 +113,8 @@ namespace Lucene.Net.Analysis.Eu /// <returns> A /// <see cref="Analyzer.TokenStreamComponents"/> /// built from an <see cref="StandardTokenizer"/> filtered with - /// <see cref="StandardFilter"/>, <see cref="LowerCaseFilter"/>, <see cref="StopFilter"/> - /// , <see cref="SetKeywordMarkerFilter"/> if a stem exclusion set is + /// <see cref="StandardFilter"/>, <see cref="LowerCaseFilter"/>, <see cref="StopFilter"/>, + /// <see cref="SetKeywordMarkerFilter"/> if a stem exclusion set is /// provided and <see cref="SnowballFilter"/>. </returns> protected override TokenStreamComponents CreateComponents(string fieldName, TextReader reader) {
