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 ot...@apache.org on 2008/11/11 19:47:43 UTC

svn commit: r713105 - /lucene/solr/trunk/src/java/org/apache/solr/search/BoostQParserPlugin.java

Author: otis
Date: Tue Nov 11 10:47:43 2008
New Revision: 713105

URL: http://svn.apache.org/viewvc?rev=713105&view=rev
Log:
- Javadoc fix

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

Modified: lucene/solr/trunk/src/java/org/apache/solr/search/BoostQParserPlugin.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/search/BoostQParserPlugin.java?rev=713105&r1=713104&r2=713105&view=diff
==============================================================================
--- lucene/solr/trunk/src/java/org/apache/solr/search/BoostQParserPlugin.java (original)
+++ lucene/solr/trunk/src/java/org/apache/solr/search/BoostQParserPlugin.java Tue Nov 11 10:47:43 2008
@@ -30,7 +30,7 @@
  * Create a boosted query from the input value.  The main value is the query to be boosted.
  * <br>Other parameters: <code>b</code>, the function query to use as the boost.
  * <br>Example: <code>{!boost b=log(popularity)}foo</code> creates a query "foo"
- * which is boosted (scores are multiplied) by the function query <code>log(popularity</code>.
+ * which is boosted (scores are multiplied) by the function query <code>log(popularity)</code>.
  * The query to be boosted may be of any type.
  */
 public class BoostQParserPlugin extends QParserPlugin {