Fix malformed JSON in Delete API example (#21168)

Obviously, there should be

    "result": "deleted"

instead of

    "result: deleted"
This commit is contained in:
Stanislav Mamontov 2016-10-31 18:13:21 +03:00 committed by Lee Hinman
parent e96fc3aa9f
commit 7738af27e8
1 changed files with 1 additions and 1 deletions

View File

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