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 2022/02/17 14:21:09 UTC

[lucenenet] branch master updated (f1eefd8 -> 3b69393)

This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git.


    from f1eefd8  website: Added download page for 4.8.0-beta00016
     new 2cfe0d7  Lucene.Net.Classification: Fixed hyperlinks in doc comments
     new 3b69393  lucene-cli docs: Updated version to 4.8.0-beta00016

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/Lucene.Net.Classification/IClassifier.cs                | 7 ++++---
 src/Lucene.Net.Classification/KNearestNeighborClassifier.cs | 5 +++--
 src/Lucene.Net.Classification/SimpleNaiveBayesClassifier.cs | 5 +++--
 src/dotnet/tools/lucene-cli/docs/index.md                   | 2 +-
 4 files changed, 11 insertions(+), 8 deletions(-)

[lucenenet] 01/02: Lucene.Net.Classification: Fixed hyperlinks in doc comments

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit 2cfe0d7b218aa4bb84009f56bd9c1cc9918fd7b7
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Thu Feb 17 18:42:52 2022 +0700

    Lucene.Net.Classification: Fixed hyperlinks in doc comments
---
 src/Lucene.Net.Classification/IClassifier.cs                | 7 ++++---
 src/Lucene.Net.Classification/KNearestNeighborClassifier.cs | 5 +++--
 src/Lucene.Net.Classification/SimpleNaiveBayesClassifier.cs | 5 +++--
 3 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/src/Lucene.Net.Classification/IClassifier.cs b/src/Lucene.Net.Classification/IClassifier.cs
index 925db20..52ab59e 100644
--- a/src/Lucene.Net.Classification/IClassifier.cs
+++ b/src/Lucene.Net.Classification/IClassifier.cs
@@ -1,4 +1,4 @@
-using Lucene.Net.Analysis;
+using Lucene.Net.Analysis;
 using Lucene.Net.Index;
 using Lucene.Net.Search;
 
@@ -22,8 +22,9 @@ namespace Lucene.Net.Classification
      */
 
     /// <summary>
-    /// A classifier, see <code>http://en.wikipedia.org/wiki/Classifier_(mathematics)</code>, which assign classes of type
-    /// <typeparam name="T"/>
+    /// A classifier, see <a href="http://en.wikipedia.org/wiki/Classifier_(mathematics)">http://en.wikipedia.org/wiki/Classifier_(mathematics)</a>,
+    /// which assign classes of type <typeparam name="T"/>.
+    /// <para/>
     /// @lucene.experimental
     /// </summary>
     public interface IClassifier<T>
diff --git a/src/Lucene.Net.Classification/KNearestNeighborClassifier.cs b/src/Lucene.Net.Classification/KNearestNeighborClassifier.cs
index 46a115c..3086ba5 100644
--- a/src/Lucene.Net.Classification/KNearestNeighborClassifier.cs
+++ b/src/Lucene.Net.Classification/KNearestNeighborClassifier.cs
@@ -26,9 +26,10 @@ namespace Lucene.Net.Classification
      */
 
     /// <summary>
-    /// A k-Nearest Neighbor classifier (see <code>http://en.wikipedia.org/wiki/K-nearest_neighbors</code>) based
+    /// A k-Nearest Neighbor classifier (see
+    /// <a href="http://en.wikipedia.org/wiki/K-nearest_neighbors">http://en.wikipedia.org/wiki/K-nearest_neighbors</a>) based
     /// on <see cref="MoreLikeThis"/>
-    ///
+    /// <para/>
     /// @lucene.experimental
     /// </summary>
     public class KNearestNeighborClassifier : IClassifier<BytesRef>
diff --git a/src/Lucene.Net.Classification/SimpleNaiveBayesClassifier.cs b/src/Lucene.Net.Classification/SimpleNaiveBayesClassifier.cs
index deeb20e..b22dcd7 100644
--- a/src/Lucene.Net.Classification/SimpleNaiveBayesClassifier.cs
+++ b/src/Lucene.Net.Classification/SimpleNaiveBayesClassifier.cs
@@ -27,8 +27,9 @@ namespace Lucene.Net.Classification
      */
 
     /// <summary>
-    /// A simplistic Lucene based NaiveBayes classifier, see <code>http://en.wikipedia.org/wiki/Naive_Bayes_classifier</code>
-    ///
+    /// A simplistic Lucene based NaiveBayes classifier, see
+    /// <a href="http://en.wikipedia.org/wiki/Naive_Bayes_classifier">http://en.wikipedia.org/wiki/Naive_Bayes_classifier</a>
+    /// <para/>
     /// @lucene.experimental
     /// </summary>
     public class SimpleNaiveBayesClassifier : IClassifier<BytesRef>

[lucenenet] 02/02: lucene-cli docs: Updated version to 4.8.0-beta00016

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit 3b69393d4ac00fc4b30fbf2e53e08d23ee07007e
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Thu Feb 17 20:22:33 2022 +0700

    lucene-cli docs: Updated version to 4.8.0-beta00016
---
 src/dotnet/tools/lucene-cli/docs/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/dotnet/tools/lucene-cli/docs/index.md b/src/dotnet/tools/lucene-cli/docs/index.md
index 1d6ff89..78a902e 100644
--- a/src/dotnet/tools/lucene-cli/docs/index.md
+++ b/src/dotnet/tools/lucene-cli/docs/index.md
@@ -11,7 +11,7 @@ The Lucene.NET command line interface (CLI) is a new cross-platform toolchain wi
 Perform a one-time install of the lucene-cli tool using the following dotnet CLI command:
 
 ```console
-dotnet tool install lucene-cli -g --version 4.8.0-beta00015
+dotnet tool install lucene-cli -g --version 4.8.0-beta00016
 ```
 
 > [!NOTE]