From e88b86219285f9f78384ef171942db4a73333134 Mon Sep 17 00:00:00 2001 From: Andy Bristol Date: Mon, 1 Apr 2019 12:03:25 -0700 Subject: [PATCH] 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 --- docs/reference/query-dsl/multi-match-query.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/query-dsl/multi-match-query.asciidoc b/docs/reference/query-dsl/multi-match-query.asciidoc index b8fbb61a950..703abd42ee6 100644 --- a/docs/reference/query-dsl/multi-match-query.asciidoc +++ b/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 <>. -`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 <>. -`phrase_prefix`:: Runs a `match_phrase_prefix` query on each field and - combines the `_score` from each field. See <>. +`phrase_prefix`:: Runs a `match_phrase_prefix` query on each field and uses + the `_score` from the best field. See <>. `bool_prefix`:: Creates a `match_bool_prefix` query on each field and combines the `_score` from each field. See