Browse Source

Docs: Fix indentation in has-child-query.asciidoc (#23565)

Pavel Chertorogov 8 years ago
parent
commit
ff1530592e
1 changed files with 10 additions and 10 deletions
  1. 10 10
      docs/reference/query-dsl/has-child-query.asciidoc

+ 10 - 10
docs/reference/query-dsl/has-child-query.asciidoc

@@ -12,11 +12,11 @@ GET /_search
     "query": {
         "has_child" : {
             "type" : "blog_tag",
-                "query" : {
-                    "term" : {
-                        "tag" : "something"
-                    }
+            "query" : {
+                "term" : {
+                    "tag" : "something"
                 }
+            }
         }
     }
 }
@@ -41,12 +41,12 @@ GET /_search
     "query": {
         "has_child" : {
             "type" : "blog_tag",
-                "score_mode" : "min",
-                "query" : {
-                    "term" : {
-                        "tag" : "something"
-                    }
+            "score_mode" : "min",
+            "query" : {
+                "term" : {
+                    "tag" : "something"
                 }
+            }
         }
     }
 }
@@ -123,4 +123,4 @@ GET /_search
     }
 }
 --------------------------------------------------
-// CONSOLE
+// CONSOLE