From patchwork Sat Oct 19 16:52:33 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Blake X-Patchwork-Id: 284883 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 1D83A2C00F8 for ; Sun, 20 Oct 2013 03:55:54 +1100 (EST) Received: from localhost ([::1]:33871 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VXZod-0000ku-2H for incoming@patchwork.ozlabs.org; Sat, 19 Oct 2013 12:55:51 -0400 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 Received: from omta01.emeryville.ca.mail.comcast.net ([76.96.30.11]) by qmta03.emeryville.ca.mail.comcast.net with comcast id f4jQ1m0020EPchoA34v3Wh; Sat, 19 Oct 2013 16:55:03 +0000 Received: from red.redhat.com ([82.68.109.172]) by omta01.emeryville.ca.mail.comcast.net with comcast id f4sg1m00P3jCnES8M4sptA; Sat, 19 Oct 2013 16:53:01 +0000 From: Eric Blake To: qemu-devel@nongnu.org Date: Sat, 19 Oct 2013 17:52:33 +0100 Message-Id: <1382201553-6561-1-git-send-email-eblake@redhat.com> X-Mailer: git-send-email 1.8.3.1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1382201703; bh=NV3yvjKs0J4Zewan8tFzohQurPBelw55CGv9g8rZ6Fg=; h=Received:Received:From:To:Subject:Date:Message-Id; b=Ilp1HDyFM1X9Tqt23yZrkH2wT+mkJOcNpX+TVIRRESj2sW+expqoE6//I4m23xuCi YuPggk4hCxX1U9MmYEq473pREBDhDgbkMeyjPNYfpywF+hHO9bbzBSj5x+gzQsmkp9 9/9RUdZYKtPLIEvDeQfg2ZDKOOTrYdtr5Or9Lq24VcCoJuJj4ni6GzMv89f23wAqLJ yOEn+8Y33sL/9MWhtqgClNJ38AMi3W/jRo6izX8qExALfQaRtW4/nlpA3QJpGtTyA4 FpxswnyJJ1SaIRv/yzAO0qkIjEEBWzvkzLbYklumip7bnpplc6AjlXnqpkjPsO8Wal LW7ErT9/+S1DA== X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 76.96.30.32 Cc: kwolf@redhat.com, qemu-trivial@nongnu.org Subject: [Qemu-devel] [PATCH] qapi: fix documentation example X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@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 ===