[DOCS] Remove unneeded spaces from custom analyzer snippet (#47332)

This commit is contained in:
Wilder Pereira 2019-10-15 16:52:52 -03:00 committed by James Rodewig
parent 09604dbaea
commit 8c73e215b2

View File

@ -59,7 +59,7 @@ PUT my_index
"analysis": {
"analyzer": {
"my_custom_analyzer": {
"type": "custom", <1>
"type": "custom", <1>
"tokenizer": "standard",
"char_filter": [
"html_strip"
@ -200,7 +200,7 @@ PUT my_index
POST my_index/_analyze
{
"analyzer": "my_custom_analyzer",
"text": "I'm a :) person, and you?"
"text": "I'm a :) person, and you?"
}
--------------------------------------------------