fix summary of phrase_prefix scoring (#40567)

The language here implies that phrase_prefix scoring works like
most_fields, but it actually works like best_fields
This commit is contained in:
Andy Bristol 2019-04-01 12:03:25 -07:00
parent 7aa3cf5445
commit e88b862192
1 changed files with 3 additions and 3 deletions

View File

@ -85,11 +85,11 @@ parameter, which can be set to:
were one big field. Looks for each word in *any*
field. See <<type-cross-fields>>.
`phrase`:: Runs a `match_phrase` query on each field and uses the `_score`
`phrase`:: Runs a `match_phrase` query on each field and uses the `_score`
from the best field. See <<type-phrase>>.
`phrase_prefix`:: Runs a `match_phrase_prefix` query on each field and
combines the `_score` from each field. See <<type-phrase>>.
`phrase_prefix`:: Runs a `match_phrase_prefix` query on each field and uses
the `_score` from the best field. See <<type-phrase>>.
`bool_prefix`:: Creates a `match_bool_prefix` query on each field and
combines the `_score` from each field. See