diff options
author | Victor Toso | 2022-09-01 10:58:33 +0200 |
---|---|---|
committer | Markus Armbruster | 2022-09-07 15:10:13 +0200 |
commit | 612fb7cd5492f7f421cbcbb6d6118ca7eef62c91 (patch) | |
tree | 5cc7d726e5c513afb9aa4a280a2ffa4a6e2fd5ba /qapi | |
parent | qapi: fix example of query-vnc command (diff) | |
download | qemu-612fb7cd5492f7f421cbcbb6d6118ca7eef62c91.tar.gz qemu-612fb7cd5492f7f421cbcbb6d6118ca7eef62c91.tar.xz qemu-612fb7cd5492f7f421cbcbb6d6118ca7eef62c91.zip |
qapi: fix example of query-dump-guest-memory-capability command
Example output is missing closing curly brackets. Fix it.
Problem was noticed when trying to load the example into python's json
library.
Signed-off-by: Victor Toso <victortoso@redhat.com>
Message-Id: <20220901085840.22520-4-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r-- | qapi/dump.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qapi/dump.json b/qapi/dump.json index 90859c5483..6fc215dd47 100644 --- a/qapi/dump.json +++ b/qapi/dump.json @@ -195,7 +195,7 @@ # # -> { "execute": "query-dump-guest-memory-capability" } # <- { "return": { "formats": -# ["elf", "kdump-zlib", "kdump-lzo", "kdump-snappy"] } +# ["elf", "kdump-zlib", "kdump-lzo", "kdump-snappy"] } } # ## { 'command': 'query-dump-guest-memory-capability', |