Browse Source

Indentation error on example of dist_max (#22578)

There was a problem with the indentation on the example of the `dist_max` query
Francesc Gil 8 years ago
parent
commit
17342c403f
1 changed files with 3 additions and 3 deletions
  1. 3 3
      docs/reference/query-dsl/dis-max-query.asciidoc

+ 3 - 3
docs/reference/query-dsl/dis-max-query.asciidoc

@@ -32,15 +32,15 @@ GET /_search
     "query": {
         "dis_max" : {
             "tie_breaker" : 0.7,
-                "boost" : 1.2,
-                "queries" : [
+            "boost" : 1.2,
+            "queries" : [
                 {
                     "term" : { "age" : 34 }
                 },
                 {
                     "term" : { "age" : 35 }
                 }
-                ]
+            ]
         }
     }
 }