From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37107) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aJjaf-0004WE-6h for qemu-devel@nongnu.org; Thu, 14 Jan 2016 10:13:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aJjaa-0004Pe-2a for qemu-devel@nongnu.org; Thu, 14 Jan 2016 10:13:33 -0500 Received: from mx1.redhat.com ([209.132.183.28]:47747) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aJjaZ-0004Pa-TO for qemu-devel@nongnu.org; Thu, 14 Jan 2016 10:13:27 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 8E3028CF5D for ; Thu, 14 Jan 2016 15:13:27 +0000 (UTC) From: Markus Armbruster Date: Thu, 14 Jan 2016 16:13:25 +0100 Message-Id: <1452784405-7097-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH] docs/qapi-code-gen.txt: Fix simple union introspection example List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org The implicit tag member is named "type", not "kind". Screwed up in commit 39a1815. Signed-off-by: Markus Armbruster --- 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 128f074..b11fa68 100644 --- a/docs/qapi-code-gen.txt +++ b/docs/qapi-code-gen.txt @@ -655,7 +655,7 @@ Union types { "name": "BlockdevOptions", "meta-type": "object", "members": [ - { "name": "kind", "type": "BlockdevOptionsKind" } ], + { "name": "type", "type": "BlockdevOptionsKind" } ], "tag": "type", "variants": [ { "case": "file", "type": ":obj-FileOptions-wrapper" }, -- 2.4.3