From 4850ac1dc0d3da849acc9a8907a3289751a530c9 Mon Sep 17 00:00:00 2001 From: Michael McCandless Date: Sun, 22 Apr 2012 17:28:26 +0000 Subject: [PATCH] javadocs: escape < > git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1328912 13f79535-47bb-0310-9956-ffa450edef68 --- .../lucene/queryparser/flexible/precedence/package.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/precedence/package.html b/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/precedence/package.html index f1835ec77a2..784aa6cc86f 100644 --- a/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/precedence/package.html +++ b/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/precedence/package.html @@ -27,8 +27,8 @@ Precedence Query Parser Implementation

The Precedence Query Parser extends the Standard Query Parser and enables -the boolean precedence. So, the query is parsed to -<(+a +b) (+c +d)> instead of <+a +b +c +d>. +the boolean precedence. So, the query <a AND b OR c AND d> is parsed to +<(+a +b) (+c +d)> instead of <+a +b +c +d>.

Check {@link org.apache.lucene.queryparser.flexible.standard.StandardQueryParser} for more details about the