From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43217) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VbuUV-0003kj-Qj for qemu-devel@nongnu.org; Thu, 31 Oct 2013 11:49:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VbuUP-0004D7-RI for qemu-devel@nongnu.org; Thu, 31 Oct 2013 11:48:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:18752) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VbuUP-0004Ct-Ic for qemu-devel@nongnu.org; Thu, 31 Oct 2013 11:48:53 -0400 From: Kevin Wolf Date: Thu, 31 Oct 2013 16:48:15 +0100 Message-Id: <1383234524-372-2-git-send-email-kwolf@redhat.com> In-Reply-To: <1383234524-372-1-git-send-email-kwolf@redhat.com> References: <1383234524-372-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PULL 01/30] qapi: fix documentation example List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org From: Eric Blake The QMP wire format uses "", not '', around strings. * docs/qapi-code-gen.txt: Fix typo. Signed-off-by: Eric Blake Signed-off-by: Kevin Wolf --- 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.1.4