Fix javadoc typo in TermInSetQuery.

This commit is contained in:
Christine Poerschke 2018-09-25 17:55:42 +01:00
parent e16d7d6993
commit 05f935f6e4
1 changed files with 1 additions and 1 deletions

View File

@ -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"));