Correct indention in synonym docs (#40711)

The stopword filter should be on the same level as the synonym filter in the
example request. Correcting this for better readability.
This commit is contained in:
Christoph Büscher 2019-04-02 01:43:02 +02:00
parent 899ed2bf81
commit dfc70e6ef0
2 changed files with 8 additions and 8 deletions

View File

@ -69,10 +69,10 @@ PUT /test_index
}
},
"filter" : {
"my_stop": {
"type" : "stop",
"stopwords": ["bar"]
},
"my_stop": {
"type" : "stop",
"stopwords": ["bar"]
},
"synonym_graph" : {
"type" : "synonym_graph",
"lenient": true,

View File

@ -58,10 +58,10 @@ PUT /test_index
}
},
"filter" : {
"my_stop": {
"type" : "stop",
"stopwords": ["bar"]
},
"my_stop": {
"type" : "stop",
"stopwords": ["bar"]
},
"synonym" : {
"type" : "synonym",
"lenient": true,