mirror of https://github.com/apache/lucene.git
Fix two 'against' typos.
This commit is contained in:
parent
b6add7ac90
commit
bf9a7e2626
|
@ -73,7 +73,7 @@
|
||||||
*
|
*
|
||||||
* For query sets that contain many conjunctions, it can be useful to extract and index different
|
* For query sets that contain many conjunctions, it can be useful to extract and index different
|
||||||
* minimal term combinations. For example, a phrase query on 'the quick brown fox' could index
|
* minimal term combinations. For example, a phrase query on 'the quick brown fox' could index
|
||||||
* both 'quick' and 'brown', and avoid being run againt documents that contain only one of these
|
* both 'quick' and 'brown', and avoid being run against documents that contain only one of these
|
||||||
* terms. The {@link org.apache.lucene.monitor.MultipassTermFilteredPresearcher} allows this sort
|
* terms. The {@link org.apache.lucene.monitor.MultipassTermFilteredPresearcher} allows this sort
|
||||||
* of indexing, taking a minimum term weight so that very common terms such as 'the' can be avoided.
|
* of indexing, taking a minimum term weight so that very common terms such as 'the' can be avoided.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1682,7 +1682,7 @@ public class StatsComponentTest extends SolrTestCaseJ4 {
|
||||||
assertNull(HllOptions.parseHllOptions(params(), field_l));
|
assertNull(HllOptions.parseHllOptions(params(), field_l));
|
||||||
assertNull(HllOptions.parseHllOptions(params("cardinality","false"), field_l));
|
assertNull(HllOptions.parseHllOptions(params("cardinality","false"), field_l));
|
||||||
|
|
||||||
// sanity check, future proof againts the HLL library changing stuff on us
|
// sanity check, future proof against the HLL library changing stuff on us
|
||||||
assertEquals("HLL Changed definition min for log2m, " +
|
assertEquals("HLL Changed definition min for log2m, " +
|
||||||
"need to note in upgrade instructions and maybe adjust accuracy hueristic",
|
"need to note in upgrade instructions and maybe adjust accuracy hueristic",
|
||||||
4, HLL.MINIMUM_LOG2M_PARAM);
|
4, HLL.MINIMUM_LOG2M_PARAM);
|
||||||
|
|
Loading…
Reference in New Issue