You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2012/04/22 02:43:29 UTC

svn commit: r1328753 - /lucene/dev/trunk/lucene/queryparser/src/java/org/apache/lucene/queryparser/classic/package.html

Author: uschindler
Date: Sun Apr 22 00:43:29 2012
New Revision: 1328753

URL: http://svn.apache.org/viewvc?rev=1328753&view=rev
Log:
fix queryparser docs (forrest error)

Modified:
    lucene/dev/trunk/lucene/queryparser/src/java/org/apache/lucene/queryparser/classic/package.html

Modified: lucene/dev/trunk/lucene/queryparser/src/java/org/apache/lucene/queryparser/classic/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/queryparser/src/java/org/apache/lucene/queryparser/classic/package.html?rev=1328753&r1=1328752&r2=1328753&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/queryparser/src/java/org/apache/lucene/queryparser/classic/package.html (original)
+++ lucene/dev/trunk/lucene/queryparser/src/java/org/apache/lucene/queryparser/classic/package.html Sun Apr 22 00:43:29 2012
@@ -68,7 +68,7 @@ enabling substantial customization to ho
 <a href="#Boolean operators">Boolean Operators</a>
 <ul class="minitoc">
 <li>
-<a href="#OR"></a>
+<a href="#OR">OR</a>
 </li>
 <li>
 <a href="#AND">AND</a>
@@ -235,7 +235,7 @@ enabling substantial customization to ho
 <p>Boolean operators allow terms to be combined through logic operators.
         Lucene supports AND, "+", OR, NOT and "-" as Boolean operators(Note: Boolean operators must be ALL CAPS).</p>
 <a name="N10103"></a><a name="OR"></a>
-<h3 class="boxed"></h3>
+<h3 class="boxed">OR</h3>
 <p>The OR operator is the default conjunction operator. This means that if there is no Boolean operator between two terms, the OR operator is used.
         The OR operator links two terms and finds a matching document if either of the terms exist in a document. This is equivalent to a union using sets.
         The symbol || can be used in place of the word OR.</p>