You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ab...@apache.org on 2018/05/08 21:14:56 UTC

[10/50] [abbrv] lucene-solr:jira/solr-11779: LUCENE-8283: Minor javadoc correction in UH FieldOffsetStrategy

LUCENE-8283: Minor javadoc correction in UH FieldOffsetStrategy


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

Branch: refs/heads/jira/solr-11779
Commit: 570fff86727742360703a7d17f33127f3341edda
Parents: f6cbb2d
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:28:56 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/570fff86/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