You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by da...@apache.org on 2018/09/28 02:18:56 UTC

[19/29] lucene-solr:jira/http2: Fix javadoc typo in TermInSetQuery.

Fix javadoc typo in TermInSetQuery.


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

Branch: refs/heads/jira/http2
Commit: 05f935f6e480ec314e4568b9349810fcd53cc74f
Parents: e16d7d6
Author: Christine Poerschke <cp...@apache.org>
Authored: Tue Sep 25 17:55:42 2018 +0100
Committer: Christine Poerschke <cp...@apache.org>
Committed: Tue Sep 25 17:56:38 2018 +0100

----------------------------------------------------------------------
 lucene/core/src/java/org/apache/lucene/search/TermInSetQuery.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/05f935f6/lucene/core/src/java/org/apache/lucene/search/TermInSetQuery.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/search/TermInSetQuery.java b/lucene/core/src/java/org/apache/lucene/search/TermInSetQuery.java
index 896f20f..9181668 100644
--- a/lucene/core/src/java/org/apache/lucene/search/TermInSetQuery.java
+++ b/lucene/core/src/java/org/apache/lucene/search/TermInSetQuery.java
@@ -49,7 +49,7 @@ import org.apache.lucene.util.RamUsageEstimator;
  * Specialization for a disjunction over many terms that behaves like a
  * {@link ConstantScoreQuery} over a {@link BooleanQuery} containing only
  * {@link org.apache.lucene.search.BooleanClause.Occur#SHOULD} clauses.
- * <p>For instance in the following example, both @{code q1} and {@code q2}
+ * <p>For instance in the following example, both {@code q1} and {@code q2}
  * would yield the same scores:
  * <pre class="prettyprint">
  * Query q1 = new TermInSetQuery(new Term("field", "foo"), new Term("field", "bar"));