File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,14 +88,14 @@ query.
88
88
While easy to set up, using the `match_phrase_prefix` query for search
89
89
autocompletion can sometimes produce confusing results.
90
90
91
- For example, consider the query string `quick brown f`. This query works by
91
+ For example, consider the query string `quick brown f`. This query works by
92
92
creating a phrase query out of `quick` and `brown` (i.e. the term `quick` must
93
- exist and must be followed by the term `brown`). Then it looks at the sorted
93
+ exist and must be followed by the term `brown`). Then it looks at the sorted
94
94
term dictionary to find the first 50 terms that begin with `f`, and adds these
95
95
terms to the phrase query.
96
96
97
97
The problem is that the first 50 terms may not include the term `fox` so the
98
- phrase `quick brown fox` will not be found. This usually isn't a problem as
98
+ phrase `quick brown fox` will not be found. This usually isn't a problem as
99
99
the user will continue to type more letters until the word they are looking
100
100
for appears.
101
101
You can’t perform that action at this time.
0 commit comments