Author: ehatcher
Date: Mon Oct 12 13:43:17 2009
New Revision: 824334
URL: http://svn.apache.org/viewvc?rev=824334&view=rev
Log:
Fix incorrect parameter name in javadoc
Modified:
lucene/solr/trunk/src/java/org/apache/solr/search/FunctionRangeQParserPlugin.java
Modified:
lucene/solr/trunk/src/java/org/apache/solr/search/FunctionRangeQParserPlugin.java
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/search/FunctionRangeQParserPlugin.java?rev=824334&r1=824333&r2=824334&view=diff
==============================================================================
---
lucene/solr/trunk/src/java/org/apache/solr/search/FunctionRangeQParserPlugin.java
(original)
+++
lucene/solr/trunk/src/java/org/apache/solr/search/FunctionRangeQParserPlugin.java
Mon Oct 12 13:43:17 2009
@@ -31,7 +31,7 @@
* <br><code>l</code>, the lower bound, optional)
* <br><code>u</code>, the upper bound, optional)
* <br><code>incl</code>, include the lower bound: true/false, optional,
default=true
- * <br><code>incl</code>, include the upper bound: true/false, optional,
default=true
+ * <br><code>incu</code>, include the upper bound: true/false, optional,
default=true
* <br>Example: <code>{!frange l=1000 u=50000}myfield</code>
*/
public class FunctionRangeQParserPlugin extends QParserPlugin {