Browse Source

[DOCS] Fix indentation (#64941) (#64962)

Co-authored-by: kemalizing <36174398+kemalizing@users.noreply.github.com>
James Rodewig 5 years ago
parent
commit
1f8d1e9ee1
1 changed files with 4 additions and 4 deletions
  1. 4 4
      docs/reference/search/search-your-data/search-your-data.asciidoc

+ 4 - 4
docs/reference/search/search-your-data/search-your-data.asciidoc

@@ -231,11 +231,11 @@ that `"total.value"` is the accurate count.
 GET my-index-000001/_search
 {
   "track_total_hits": true,
-    "query": {
-      "match" : {
-        "user.id" : "elkbee"
-      }
+  "query": {
+    "match" : {
+      "user.id" : "elkbee"
     }
+  }
 }
 --------------------------------------------------
 // TEST[setup:my_index]