You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ds...@apache.org on 2018/04/30 02:30:37 UTC

lucene-solr:branch_7x: LUCENE-8283: Minor javadoc correction in UH FieldOffsetStrategy

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7x 935b0c89c -> 9ea30e938


LUCENE-8283: Minor javadoc correction in UH FieldOffsetStrategy

(cherry picked from commit 570fff8)


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/9ea30e93
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/9ea30e93
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/9ea30e93

Branch: refs/heads/branch_7x
Commit: 9ea30e938ef8e63764bce35ac2746a6137c15c5e
Parents: 935b0c8
Author: David Smiley <ds...@apache.org>
Authored: Sun Apr 29 22:28:56 2018 -0400
Committer: David Smiley <ds...@apache.org>
Committed: Sun Apr 29 22:30:29 2018 -0400

----------------------------------------------------------------------
 .../org/apache/lucene/search/uhighlight/FieldOffsetStrategy.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/9ea30e93/lucene/highlighter/src/java/org/apache/lucene/search/uhighlight/FieldOffsetStrategy.java
----------------------------------------------------------------------
diff --git a/lucene/highlighter/src/java/org/apache/lucene/search/uhighlight/FieldOffsetStrategy.java b/lucene/highlighter/src/java/org/apache/lucene/search/uhighlight/FieldOffsetStrategy.java
index ed47032..cf564f4 100644
--- a/lucene/highlighter/src/java/org/apache/lucene/search/uhighlight/FieldOffsetStrategy.java
+++ b/lucene/highlighter/src/java/org/apache/lucene/search/uhighlight/FieldOffsetStrategy.java
@@ -30,7 +30,7 @@ import org.apache.lucene.util.CharsRefBuilder;
 import org.apache.lucene.util.automaton.CharacterRunAutomaton;
 
 /**
- * Ultimately returns a list of {@link OffsetsEnum} yielding potentially highlightable words in the text.  Needs
+ * Ultimately returns an {@link OffsetsEnum} yielding potentially highlightable words in the text.  Needs
  * information about the query up front.
  *
  * @lucene.internal