You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2017/06/22 05:25:25 UTC

[24/38] lucenenet git commit: Lucene.Net.Analysis.Analyzer: fixed documentation comments

Lucene.Net.Analysis.Analyzer: fixed documentation comments


Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/cf3a71c5
Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/cf3a71c5
Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/cf3a71c5

Branch: refs/heads/master
Commit: cf3a71c5f9339de46822b2decfdbfd53b00eae81
Parents: 7842db8
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Wed Jun 21 20:14:20 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Wed Jun 21 23:59:56 2017 +0700

----------------------------------------------------------------------
 src/Lucene.Net/Analysis/Analyzer.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/cf3a71c5/src/Lucene.Net/Analysis/Analyzer.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net/Analysis/Analyzer.cs b/src/Lucene.Net/Analysis/Analyzer.cs
index a768d05..f0c2c9d 100644
--- a/src/Lucene.Net/Analysis/Analyzer.cs
+++ b/src/Lucene.Net/Analysis/Analyzer.cs
@@ -109,7 +109,7 @@ namespace Lucene.Net.Analysis
         /// LUCENENET specific
         /// </summary>
         /// <param name="createComponents">
-        /// An delegate method that represents (is called by) the <see cref="CreateComponents(string, TextReader)"/> 
+        /// A delegate method that represents (is called by) the <see cref="CreateComponents(string, TextReader)"/> 
         /// method. It accepts a <see cref="string"/> fieldName and a <see cref="TextReader"/> reader and 
         /// returns the <see cref="TokenStreamComponents"/> for this analyzer.
         /// </param>
@@ -149,7 +149,7 @@ namespace Lucene.Net.Analysis
 
         /// <summary>
         /// Creates a new instance with the ability to specify the body of the <see cref="CreateComponents(string, TextReader)"/>
-        /// method through the <paramref name="createComponents"/> parameter, the body of the <see cref="InitReader(string, TextReader)"/>
+        /// method through the <paramref name="createComponents"/> parameter and the body of the <see cref="InitReader(string, TextReader)"/>
         /// method through the <paramref name="initReader"/> parameter.
         /// Simple example: 
         /// <code>