docs: fix search info in transport API docs (#22045)

fix some error!
This commit is contained in:
BUPTAnderson 2017-04-18 10:16:37 +08:00 committed by Nik Everett
parent 12c8423ec9
commit a973197503
1 changed files with 6 additions and 10 deletions

View File

@ -161,14 +161,12 @@ For example, if you have a file named `config/scripts/template_gender.mustache`
[source,js]
--------------------------------------------------
{
"template" : {
"query" : {
"match" : {
"gender" : "{{param_gender}}"
}
}
}
}
--------------------------------------------------
// NOTCONSOLE
@ -200,13 +198,11 @@ client.admin().cluster().preparePutStoredScript()
.setId("template_gender")
.setSource(new BytesArray(
"{\n" +
" \"template\" : {\n" +
" \"query\" : {\n" +
" \"match\" : {\n" +
" \"gender\" : \"{{param_gender}}\"\n" +
" }\n" +
" }\n" +
" }\n" +
"}")).get();
--------------------------------------------------