From: Eric Blake Date: Sat, 19 Oct 2013 16:52:33 +0000 (+0100) Subject: qapi: fix documentation example X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~524^2~3^2~72^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=63922c647730eba01865e05bf1e80dd7d682e287;p=sdk%2Femulator%2Fqemu.git qapi: fix documentation example The QMP wire format uses "", not '', around strings. * docs/qapi-code-gen.txt: Fix typo. Signed-off-by: Eric Blake Signed-off-by: Michael Tokarev --- diff --git a/docs/qapi-code-gen.txt b/docs/qapi-code-gen.txt index 91f44d01b9..0728f36c65 100644 --- a/docs/qapi-code-gen.txt +++ b/docs/qapi-code-gen.txt @@ -164,7 +164,7 @@ This example allows using both of the following example objects: { "file": "my_existing_block_device_id" } { "file": { "driver": "file", "readonly": false, - 'filename': "/tmp/mydisk.qcow2" } } + "filename": "/tmp/mydisk.qcow2" } } === Commands ===