Browse Source

Fix response format of /customer/external/1?pretty

The response format is displaying elements "found" and "source" in the
same lines and they should appear on their own separate lines.

Closes #18374
Rodolfo Martinez 9 years ago
parent
commit
5a33fdbac7
1 changed files with 2 additions and 1 deletions
  1. 2 1
      docs/reference/getting-started.asciidoc

+ 2 - 1
docs/reference/getting-started.asciidoc

@@ -326,7 +326,8 @@ curl -XGET 'localhost:9200/customer/external/1?pretty'
   "_type" : "external",
   "_id" : "1",
   "_version" : 1,
-  "found" : true, "_source" : { "name": "John Doe" }
+  "found" : true,
+  "_source" : { "name": "John Doe" }
 }
 --------------------------------------------------