You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by yo...@apache.org on 2008/07/17 15:03:08 UTC

svn commit: r677573 - /lucene/solr/trunk/src/java/org/apache/solr/search/NestedQParserPlugin.java

Author: yonik
Date: Thu Jul 17 06:03:08 2008
New Revision: 677573

URL: http://svn.apache.org/viewvc?rev=677573&view=rev
Log:
javadoc fix, update to new localparams syntax

Modified:
    lucene/solr/trunk/src/java/org/apache/solr/search/NestedQParserPlugin.java

Modified: lucene/solr/trunk/src/java/org/apache/solr/search/NestedQParserPlugin.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/search/NestedQParserPlugin.java?rev=677573&r1=677572&r2=677573&view=diff
==============================================================================
--- lucene/solr/trunk/src/java/org/apache/solr/search/NestedQParserPlugin.java (original)
+++ lucene/solr/trunk/src/java/org/apache/solr/search/NestedQParserPlugin.java Thu Jul 17 06:03:08 2008
@@ -30,9 +30,9 @@
  * Create a nested query, with the ability of that query to redefine it's type via
  * local parameters.  This is useful in specifying defaults in configuration and
  * letting clients indirectly reference them.
- * <br>Example: <code>&lt;!query defType=func v=$q1&gt;</code>
+ * <br>Example: <code>{!query defType=func v=$q1}</code>
  * <br> if the q1 parameter is <code>price</code> then the query would be a function query on the price field.
- * <br> if the q1 parameter is <code>&lt;!lucene&gt;inStock:true</code> then a term query is
+ * <br> if the q1 parameter is <code>{!lucene}inStock:true</code> then a term query is
  *     created from the lucene syntax string that matches documents with inStock=true.
  */
 public class NestedQParserPlugin extends QParserPlugin {