diff --git a/src/java/org/apache/lucene/search/BooleanClause.java b/src/java/org/apache/lucene/search/BooleanClause.java index ff71b2b97ba..aca9ac4ee46 100644 --- a/src/java/org/apache/lucene/search/BooleanClause.java +++ b/src/java/org/apache/lucene/search/BooleanClause.java @@ -36,7 +36,7 @@ public class BooleanClause implements java.io.Serializable { /** Use this operator for terms that must appear in the matching documents. */ public static final Occur MUST = new Occur("MUST"); - /** Use this operator for terms of which should appear in the + /** Use this operator for terms that should appear in the * matching documents. For a BooleanQuery with two SHOULD * subqueries, at least one of the queries must appear in the matching documents. */ public static final Occur SHOULD = new Occur("SHOULD");