Fix javadocs of NRQ/NRF

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@919718 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2010-03-06 08:58:41 +00:00
parent da0de2c349
commit 6efaaaac3b
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ import org.apache.lucene.util.NumericUtils; // for javadocs
* factory methods, eg: * factory methods, eg:
* *
* <pre> * <pre>
* Filter f = NumericRangeFilter.newFloatRange("weight", 0.3f, 0.10f, true, true); * Filter f = NumericRangeFilter.newFloatRange("weight", 0.03f, 0.10f, true, true);
* </pre> * </pre>
* *
* accepts all documents whose float valued "weight" field * accepts all documents whose float valued "weight" field

View File

@ -42,7 +42,7 @@ import org.apache.lucene.index.TermEnum;
* factory methods, eg: * factory methods, eg:
* *
* <pre> * <pre>
* Query q = NumericRangeQuery.newFloatRange("weight", 0.3f, 0.10f, true, true); * Query q = NumericRangeQuery.newFloatRange("weight", 0.03f, 0.10f, true, true);
* </pre> * </pre>
* *
* matches all documents whose float valued "weight" field * matches all documents whose float valued "weight" field