From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48244) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VXZo9-0000h6-2H for qemu-devel@nongnu.org; Sat, 19 Oct 2013 12:55:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VXZnu-0003Vq-DF for qemu-devel@nongnu.org; Sat, 19 Oct 2013 12:55:21 -0400 Received: from qmta03.emeryville.ca.mail.comcast.net ([76.96.30.32]:33906) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VXZnu-0003OQ-5N for qemu-devel@nongnu.org; Sat, 19 Oct 2013 12:55:06 -0400 From: Eric Blake Date: Sat, 19 Oct 2013 17:52:33 +0100 Message-Id: <1382201553-6561-1-git-send-email-eblake@redhat.com> Subject: [Qemu-devel] [PATCH] qapi: fix documentation example List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, qemu-trivial@nongnu.org The QMP wire format uses "", not '', around strings. * docs/qapi-code-gen.txt: Fix typo. Signed-off-by: Eric Blake --- docs/qapi-code-gen.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/qapi-code-gen.txt b/docs/qapi-code-gen.txt index 91f44d0..0728f36 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 === -- 1.8.3.1