Browse Source

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

Wilder Pereira 6 years ago
parent
commit
630bfa1001
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/reference/analysis/analyzers/custom-analyzer.asciidoc

+ 2 - 2
docs/reference/analysis/analyzers/custom-analyzer.asciidoc

@@ -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?"
 }
 --------------------------------------------------