qapi: Fix misspelled section tags in doc comments
Section tags are case sensitive and end with a colon. Screwing up either gets them interpreted as ordinary paragraph. Fix a few. Fixes: 4e88e7e340 (qapi/qom: Define cache enumeration and properties for machine, 2024-11-01) Fixes: 8eb6d39e22 (qom: qom-list-get, 2025-07-11) Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-ID: <20260701061136.798815-1-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com>
Markus Armbruster committed
Jul 1, 2026 at 08:11 UTC
8b61adae4e25d9f6ec17462ac2b6f7ad6b5bab14
2 files changed
+4
-4
qapi/machine-common.json
+1
-1
@@ -108,7 +108,7 @@
108
#
109
# @caches: the list of `SmpCacheProperties`.
110
#
111
-# Since 9.2
111
+# Since: 9.2
112
##
113
{ 'struct': 'SmpCachePropertiesWrapper',
114
'data': { 'caches': ['SmpCacheProperties'] } }
qapi/qom.json
+3
-3
@@ -58,7 +58,7 @@
58
# @value: the value of the property. Absent when the property cannot
59
# be read.
60
#
61
-# Since 10.1
61
+# Since: 10.1
62
##
63
{ 'struct': 'ObjectPropertyValue',
64
'data': { 'name': 'str',
@@ -70,7 +70,7 @@
70
#
71
# @properties: a list of properties.
72
#
73
-# Since 10.1
73
+# Since: 10.1
74
##
75
{ 'struct': 'ObjectPropertiesValues',
76
'data': { 'properties': [ 'ObjectPropertyValue' ] }}
@@ -167,7 +167,7 @@
167
# Returns: A list where each element is the result for the
168
# corresponding element of @paths.
169
#
170
-# Since 10.1
170
+# Since: 10.1
171
##
172
{ 'command': 'qom-list-get',
173
'data': { 'paths': [ 'str' ] },