Docs: Fixed missing comma in multi match query example

This commit is contained in:
jnguyenx 2014-07-03 08:15:57 +02:00 committed by Alexander Reelsen
parent c1bc269de9
commit 1883f74cc0
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ Fields can be specified with wildcards, eg:
--------------------------------------------------
{
"multi_match" : {
"query": "Will Smith"
"query": "Will Smith",
"fields": [ "title", "*_name" ] <1>
}
}