Polish doc

Closes #15011
This commit is contained in:
Johnny Lim 2015-11-25 21:24:13 +09:00 committed by Clinton Gormley
parent 174b4bacbe
commit a66be6cfb9
1 changed files with 13 additions and 13 deletions

View File

@ -113,8 +113,8 @@ which is roughly equivalent to:
{ "term": { "body": "cartoon"}}
],
"should": [
{ "term": { "body": "the"}},
{ "term": { "body": "as"}},
{ "term": { "body": "the"}}
{ "term": { "body": "as"}}
{ "term": { "body": "a"}}
]
}
@ -156,8 +156,8 @@ which is roughly equivalent to:
}
},
"should": [
{ "term": { "body": "the"}},
{ "term": { "body": "as"}},
{ "term": { "body": "the"}}
{ "term": { "body": "as"}}
{ "term": { "body": "a"}}
]
}
@ -169,7 +169,7 @@ minimum_should_match
A different
<<query-dsl-minimum-should-match,`minimum_should_match`>>
can be applied for low and high frequency terms with the additional
`low_freq` and `high_freq` parameters Here is an example when providing
`low_freq` and `high_freq` parameters. Here is an example when providing
additional parameters (note the change in structure):
[source,js]