From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46626) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c3mId-0003m1-Ta for qemu-devel@nongnu.org; Mon, 07 Nov 2016 10:57:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c3mIZ-0002HF-3w for qemu-devel@nongnu.org; Mon, 07 Nov 2016 10:57:32 -0500 Received: from mx1.redhat.com ([209.132.183.28]:33650) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c3mIY-0002GQ-8a for qemu-devel@nongnu.org; Mon, 07 Nov 2016 10:57:27 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 76434C04B943 for ; Mon, 7 Nov 2016 15:57:25 +0000 (UTC) From: Markus Armbruster References: <20161107073033.21025-1-marcandre.lureau@redhat.com> <20161107073033.21025-8-marcandre.lureau@redhat.com> Date: Mon, 07 Nov 2016 16:57:23 +0100 In-Reply-To: <20161107073033.21025-8-marcandre.lureau@redhat.com> (=?utf-8?Q?=22Marc-Andr=C3=A9?= Lureau"'s message of "Mon, 7 Nov 2016 11:30:26 +0400") Message-ID: <87k2cfp9jw.fsf@dusky.pond.sub.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v3 07/14] qapi: use one symbol per line List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?utf-8?Q?Marc-Andr=C3=A9?= Lureau Cc: qemu-devel@nongnu.org Marc-Andr=C3=A9 Lureau writes: > The documentation parser only handles a single symbol per line. Suggest "The documentation parser we're going to add". > Signed-off-by: Marc-Andr=C3=A9 Lureau > --- > qapi/block-core.json | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/qapi/block-core.json b/qapi/block-core.json > index c64a48c..e1cc94a 100644 > --- a/qapi/block-core.json > +++ b/qapi/block-core.json > @@ -1712,9 +1712,13 @@ > # > # Drivers that are supported in block device operations. > # > -# @host_device, @host_cdrom: Since 2.1 > +# @host_device: Since 2.1 > +# @host_cdrom: Since 2.1 > # @gluster: Since 2.7 > -# @nbd, @nfs, @replication, @ssh: Since 2.8 > +# @nbd: Since 2.8 > +# @nfs: Since 2.8 > +# @replication: Since 2.8 > +# @ssh: Since 2.8 > # > # Since: 2.0 > ## If we had more, I'd consider making the doc parser smarter, but it's not worth the bother just for this one.