From b0e5d04813308e0aac7a738c5dde01b27428f8e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Thu, 1 Mar 2018 09:06:59 -0500 Subject: [PATCH] qapi: add missing colon-ending for section name The documentation parser we are going to add expects a section name to end with ':', otherwise the comment is treated as free-form text body. Backports commit 5072f7b38b1b9b26b8fbe1a89086386a420aded8 from qemu --- qemu/qapi-schema.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qemu/qapi-schema.json b/qemu/qapi-schema.json index 99ff1e22..9c18bfd9 100644 --- a/qemu/qapi-schema.json +++ b/qemu/qapi-schema.json @@ -6,7 +6,7 @@ { 'include': 'qapi/common.json' } ## -# @X86CPURegister32 +# @X86CPURegister32: # # A X86 32-bit register # @@ -16,7 +16,7 @@ 'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] } ## -# @X86CPUFeatureWordInfo +# @X86CPUFeatureWordInfo: # # Information about a X86 CPU feature word # @@ -38,11 +38,11 @@ 'features': 'int' } } ## -# @DummyForceArrays +# @DummyForceArrays: # # Not used by QMP; hack to let us use X86CPUFeatureWordInfoList internally # -# Since 2.5 +# Since: 2.5 ## { 'struct': 'DummyForceArrays', 'data': { 'unused': ['X86CPUFeatureWordInfo'] } }