mirror of https://github.com/xqemu/xqemu.git
docs: fix broken paths to docs/devel/qapi-code-gen.txt
With the move of some docs to docs/interop on ac06724a71
,
a couple of references were not updated.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
f3fdeb9c97
commit
b3125e73d4
|
@ -7,7 +7,7 @@ This document doesn't discuss QMP protocol level details, nor does it dive
|
||||||
into the QAPI framework implementation.
|
into the QAPI framework implementation.
|
||||||
|
|
||||||
For an in-depth introduction to the QAPI framework, please refer to
|
For an in-depth introduction to the QAPI framework, please refer to
|
||||||
docs/qapi-code-gen.txt. For documentation about the QMP protocol,
|
docs/devel/qapi-code-gen.txt. For documentation about the QMP protocol,
|
||||||
start with docs/interop/qmp-intro.txt.
|
start with docs/interop/qmp-intro.txt.
|
||||||
|
|
||||||
== Overview ==
|
== Overview ==
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
* QemuOpts, and clone visitors have some implementation limitations;
|
* QemuOpts, and clone visitors have some implementation limitations;
|
||||||
* see the documentation for each visitor for more details on what it
|
* see the documentation for each visitor for more details on what it
|
||||||
* supports. Also, see visitor-impl.h for the callback contracts
|
* supports. Also, see visitor-impl.h for the callback contracts
|
||||||
* implemented by each visitor, and docs/qapi-code-gen.txt for more
|
* implemented by each visitor, and docs/devel/qapi-code-gen.txt for more
|
||||||
* about the QAPI code generator.
|
* about the QAPI code generator.
|
||||||
*
|
*
|
||||||
* All of the visitors are created via:
|
* All of the visitors are created via:
|
||||||
|
|
|
@ -226,7 +226,7 @@
|
||||||
#
|
#
|
||||||
# @members: the alternate type's members, in no particular order.
|
# @members: the alternate type's members, in no particular order.
|
||||||
# The members' wire encoding is distinct, see
|
# The members' wire encoding is distinct, see
|
||||||
# docs/qapi-code-gen.txt section Alternate types.
|
# docs/devel/qapi-code-gen.txt section Alternate types.
|
||||||
#
|
#
|
||||||
# On the wire, this can be any of the members.
|
# On the wire, this can be any of the members.
|
||||||
#
|
#
|
||||||
|
|
|
@ -40,7 +40,7 @@ int qapi_enum_parse(const char * const lookup[], const char *buf,
|
||||||
* It may be prefixed by __RFQDN_ (downstream extension), where RFQDN
|
* It may be prefixed by __RFQDN_ (downstream extension), where RFQDN
|
||||||
* may contain only letters, digits, hyphen and period.
|
* may contain only letters, digits, hyphen and period.
|
||||||
* The special exception for enumeration names is not implemented.
|
* The special exception for enumeration names is not implemented.
|
||||||
* See docs/qapi-code-gen.txt for more on QAPI naming rules.
|
* See docs/devel/qapi-code-gen.txt for more on QAPI naming rules.
|
||||||
* Keep this consistent with scripts/qapi.py!
|
* Keep this consistent with scripts/qapi.py!
|
||||||
* If @complete, the parse fails unless it consumes @str completely.
|
* If @complete, the parse fails unless it consumes @str completely.
|
||||||
* Return its length on success, -1 on failure.
|
* Return its length on success, -1 on failure.
|
||||||
|
|
|
@ -91,7 +91,7 @@ def texi_format(doc):
|
||||||
# doesn't.
|
# doesn't.
|
||||||
#
|
#
|
||||||
# Make sure to update section "Documentation markup" in
|
# Make sure to update section "Documentation markup" in
|
||||||
# docs/qapi-code-gen.txt when fixing this.
|
# docs/devel/qapi-code-gen.txt when fixing this.
|
||||||
if line.startswith('| '):
|
if line.startswith('| '):
|
||||||
line = EXAMPLE_FMT(code=line[2:])
|
line = EXAMPLE_FMT(code=line[2:])
|
||||||
elif line.startswith('= '):
|
elif line.startswith('= '):
|
||||||
|
|
Loading…
Reference in New Issue