Browse Source

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
Andy Bristol 6 years ago
parent
commit
d51cbc664e
1 changed files with 3 additions and 3 deletions
  1. 3 3
      docs/reference/query-dsl/multi-match-query.asciidoc

+ 3 - 3
docs/reference/query-dsl/multi-match-query.asciidoc

@@ -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