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/02/05 16:51:38 UTC

[03/27] lucenenet git commit: Lucene.Net.Analaysis.Stempel: fix documentation comment formatting problems

Lucene.Net.Analaysis.Stempel: fix documentation comment formatting problems


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

Branch: refs/heads/api-work
Commit: 2e2fedaab71775351bd0e5cd53e84d9338381cab
Parents: 2ae5a27
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Sun Feb 5 11:17:09 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Sun Feb 5 14:47:46 2017 +0700

----------------------------------------------------------------------
 .../Egothor.Stemmer/Compile.cs                   | 19 +++++++++----------
 .../Egothor.Stemmer/MultiTrie2.cs                |  4 ++--
 .../Egothor.Stemmer/Row.cs                       |  2 +-
 3 files changed, 12 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/2e2fedaa/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/Compile.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/Compile.cs b/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/Compile.cs
index 20cb46a..b1d2fe9 100644
--- a/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/Compile.cs
+++ b/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/Compile.cs
@@ -73,16 +73,15 @@ namespace Egothor.Stemmer
         /// </summary>
         private Compile() { }
 
-        /**
-         * Entry point to the Compile application.
-         * <p>
-         * This program takes any number of arguments: the first is the name of the
-         * desired stemming algorithm to use (a list is available in the package
-         * description) , all of the rest should be the path or paths to a file or
-         * files containing a stemmer table to compile.
-         * 
-         * @param args the command line arguments
-         */
+        /// <summary>
+        /// Entry point to the Compile application.
+        /// <para/>
+        /// This program takes any number of arguments: the first is the name of the
+        /// desired stemming algorithm to use (a list is available in the package
+        /// description) , all of the rest should be the path or paths to a file or
+        /// files containing a stemmer table to compile.
+        /// </summary>
+        /// <param name="args">the command line arguments</param>
         public static void Main(string[] args)
         {
             if (args.Length < 1)

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/2e2fedaa/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/MultiTrie2.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/MultiTrie2.cs b/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/MultiTrie2.cs
index cc6dbed..8d8568e 100644
--- a/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/MultiTrie2.cs
+++ b/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/MultiTrie2.cs
@@ -74,7 +74,7 @@ namespace Egothor.Stemmer
         /// Constructor for the <see cref="MultiTrie"/> object.
         /// </summary>
         /// <param name="is">the input stream</param>
-        /// <exception cref="IOException">if an I/O error occurs</exception>
+        /// <exception cref="System.IO.IOException">if an I/O error occurs</exception>
         public MultiTrie2(IDataInput @is)
             : base(@is)
         {
@@ -207,7 +207,7 @@ namespace Egothor.Stemmer
         /// Write this data structure to the given output stream.
         /// </summary>
         /// <param name="os">the output stream</param>
-        /// <exception cref="IOException">if an I/O error occurs</exception>
+        /// <exception cref="System.IO.IOException">if an I/O error occurs</exception>
         public override void Store(IDataOutput os)
         {
             base.Store(os);

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/2e2fedaa/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/Row.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/Row.cs b/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/Row.cs
index 6fdad76..b2ee5fa 100644
--- a/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/Row.cs
+++ b/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/Row.cs
@@ -73,7 +73,7 @@ namespace Egothor.Stemmer
         /// <summary>
         /// Construct a <see cref="Row"/> object from input carried in via the given input stream.
         /// </summary>
-        /// <param name="@is">the input stream</param>
+        /// <param name="is">the input stream</param>
         /// <exception cref="IOException">if an I/O error occurs</exception>
         public Row(IDataInput @is)
         {