LUCENE-4410: fix spelling error

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1388395 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Simon Willnauer 2012-09-21 09:45:03 +00:00
parent 0392a46722
commit 68e0f1c738
1 changed files with 4 additions and 4 deletions

View File

@ -427,7 +427,7 @@ public class FilteredQuery extends Query {
* Note: This strategy uses the filter to lead the iteration. * Note: This strategy uses the filter to lead the iteration.
* </p> * </p>
*/ */
public static final FilterStrategy LEAP_FROG_FILTER_FIRST_STRATEGY = new LeapFrogFilterStragey(false); public static final FilterStrategy LEAP_FROG_FILTER_FIRST_STRATEGY = new LeapFrogFilterStrategy(false);
/** /**
* A filter strategy that uses a "leap-frog" approach (also called "zig-zag join"). * A filter strategy that uses a "leap-frog" approach (also called "zig-zag join").
@ -439,7 +439,7 @@ public class FilteredQuery extends Query {
* Note: This strategy uses the query to lead the iteration. * Note: This strategy uses the query to lead the iteration.
* </p> * </p>
*/ */
public static final FilterStrategy LEAP_FROG_QUERY_FIRST_STRATEGY = new LeapFrogFilterStragey(true); public static final FilterStrategy LEAP_FROG_QUERY_FIRST_STRATEGY = new LeapFrogFilterStrategy(true);
/** /**
* A filter strategy that advances the Query or rather its {@link Scorer} first and consults the * A filter strategy that advances the Query or rather its {@link Scorer} first and consults the
@ -544,11 +544,11 @@ public class FilteredQuery extends Query {
} }
} }
private static final class LeapFrogFilterStragey extends FilterStrategy { private static final class LeapFrogFilterStrategy extends FilterStrategy {
private final boolean scorerFirst; private final boolean scorerFirst;
private LeapFrogFilterStragey(boolean scorerFirst) { private LeapFrogFilterStrategy(boolean scorerFirst) {
this.scorerFirst = scorerFirst; this.scorerFirst = scorerFirst;
} }
@Override @Override