aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2020-03-09 15:26:38 +0100
committerMarkus Armbruster <armbru@redhat.com>2020-03-17 17:34:21 +0100
commit942ab6865ab217f370dc2e81415774aabe8b1ea8 (patch)
treee972015f932b951a84e21a29b6e044af75f40c4f /docs
parent40c67636f67c2a89745f2e698522fe917326a952 (diff)
downloadqemu-942ab6865ab217f370dc2e81415774aabe8b1ea8.zip
qemu-942ab6865ab217f370dc2e81415774aabe8b1ea8.tar.gz
qemu-942ab6865ab217f370dc2e81415774aabe8b1ea8.tar.bz2
docs/devel/qapi-code-gen: Fix typo in grammar
An ALTERNATIVE's value can only be a type name. Arrays are not supported, yet. The text gets it right: "The form STRING is shorthand for { 'type': STRING }." The grammar doesn't. Fix it. Fixes: b6c37ebaaf074cac8fe8a4781dc3e79db23e914e Reported-by: John Snow <jsnow@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20200309142638.19988-1-armbru@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/devel/qapi-code-gen.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/devel/qapi-code-gen.txt b/docs/devel/qapi-code-gen.txt
index 59d6973..e73979e 100644
--- a/docs/devel/qapi-code-gen.txt
+++ b/docs/devel/qapi-code-gen.txt
@@ -399,7 +399,7 @@ Syntax:
'data': ALTERNATIVES,
'*if': COND }
ALTERNATIVES = { ALTERNATIVE, ... }
- ALTERNATIVE = STRING : TYPE-REF
+ ALTERNATIVE = STRING : STRING
| STRING : { 'type': STRING, '*if': COND }
Member 'alternate' names the alternate type.