Browse Source

Fix malformed JSON in Delete API example (#21168)

Obviously, there should be

    "result": "deleted"

instead of

    "result: deleted"
Stanislav Mamontov 9 years ago
parent
commit
7738af27e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/docs/delete.asciidoc

+ 1 - 1
docs/reference/docs/delete.asciidoc

@@ -26,7 +26,7 @@ The result of the above delete operation is:
     "_type" : "tweet",
     "_id" : "1",
     "_version" : 2,
-    "result: deleted"
+    "result": "deleted"
 }
 --------------------------------------------------