浏览代码

docs/devel/qapi-code-gen: Belatedly update features documentation

Commit 013b4efc9be "qapi: Add feature flags to remaining
definitions" (v5.0.0), commit 84ab0086879 "qapi: Add feature flags to
struct members" (v5.0.0), and commit b6c18755e41 "qapi: Add feature
flags to enum members" (v6.2.0) neglected to update section
"Features".  Make up for that.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20230213132009.918801-2-armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Markus Armbruster 2 年之前
父节点
当前提交
ebf1b324e8
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. 4 3
      docs/devel/qapi-code-gen.rst

+ 4 - 3
docs/devel/qapi-code-gen.rst

@@ -685,9 +685,10 @@ change in the QMP syntax (usually by allowing values or operations
 that previously resulted in an error).  QMP clients may still need to
 that previously resulted in an error).  QMP clients may still need to
 know whether the extension is available.
 know whether the extension is available.
 
 
-For this purpose, a list of features can be specified for a command or
-struct type.  Each list member can either be ``{ 'name': STRING, '*if':
-COND }``, or STRING, which is shorthand for ``{ 'name': STRING }``.
+For this purpose, a list of features can be specified for definitions,
+enumeration values, and struct members.  Each feature list member can
+either be ``{ 'name': STRING, '*if': COND }``, or STRING, which is
+shorthand for ``{ 'name': STRING }``.
 
 
 The optional 'if' member specifies a conditional.  See `Configuring
 The optional 'if' member specifies a conditional.  See `Configuring
 the schema`_ below for more on this.
 the schema`_ below for more on this.