LUCENE-6143: Correct javadoc for surround query parser

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1648497 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2014-12-30 10:16:27 +00:00
parent 119d8caa21
commit c1f32c4b3c
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ import org.apache.lucene.queryparser.surround.query.SrndTruncQuery;
* c)</code> notation. </p>
* <p>The W and N operators express a positional relationship among their
* operands. N is ordered, and W is unordered. The distance is 1 by
* operands. W is ordered, and N is unordered. The distance is 1 by
* default, meaning the operands are adjacent, or may be provided as a
* prefix from 2-99. So, for example, 3W(a, b) means that terms a and b
* must appear within three positions of each other, or in other words, up

View File

@ -65,7 +65,7 @@ import org.apache.lucene.queryparser.surround.query.SrndTruncQuery;
* c)</code> notation. </p>
* <p>The W and N operators express a positional relationship among their
* operands. N is ordered, and W is unordered. The distance is 1 by
* operands. W is ordered, and N is unordered. The distance is 1 by
* default, meaning the operands are adjacent, or may be provided as a
* prefix from 2-99. So, for example, 3W(a, b) means that terms a and b
* must appear within three positions of each other, or in other words, up