You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2019/02/26 23:04:34 UTC

[lucene-solr] branch master updated: fix typo in javadocs

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

mikemccand pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new 1ad45a7  fix typo in javadocs
1ad45a7 is described below

commit 1ad45a79743f488a0f650ec7bf085f839082064e
Author: Mike McCandless <mi...@apache.org>
AuthorDate: Tue Feb 26 18:04:24 2019 -0500

    fix typo in javadocs
---
 lucene/core/src/java/org/apache/lucene/search/TotalHits.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lucene/core/src/java/org/apache/lucene/search/TotalHits.java b/lucene/core/src/java/org/apache/lucene/search/TotalHits.java
index 7a0412f..b3a4c83 100644
--- a/lucene/core/src/java/org/apache/lucene/search/TotalHits.java
+++ b/lucene/core/src/java/org/apache/lucene/search/TotalHits.java
@@ -35,7 +35,7 @@ public final class TotalHits {
      */
     EQUAL_TO,
     /**
-     * The total hit count is greater than or eual to {@link TotalHits#value}.
+     * The total hit count is greater than or equal to {@link TotalHits#value}.
      */
     GREATER_THAN_OR_EQUAL_TO
   }