diff options
| author | Eric Blake | 2013-10-19 18:52:33 +0200 |
|---|---|---|
| committer | Michael Tokarev | 2013-10-26 11:01:58 +0200 |
| commit | 63922c647730eba01865e05bf1e80dd7d682e287 (patch) | |
| tree | df9229001018750844514f83df044a138acddb25 /docs/qapi-code-gen.txt | |
| parent | .gitignore: ignore qmp-commands.txt (diff) | |
| download | qemu-63922c647730eba01865e05bf1e80dd7d682e287.tar.gz qemu-63922c647730eba01865e05bf1e80dd7d682e287.tar.xz qemu-63922c647730eba01865e05bf1e80dd7d682e287.zip | |
qapi: fix documentation example
The QMP wire format uses "", not '', around strings.
* docs/qapi-code-gen.txt: Fix typo.
Signed-off-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'docs/qapi-code-gen.txt')
| -rw-r--r-- | docs/qapi-code-gen.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/qapi-code-gen.txt b/docs/qapi-code-gen.txt index 91f44d01b9..0728f36c65 100644 --- a/docs/qapi-code-gen.txt +++ b/docs/qapi-code-gen.txt @@ -164,7 +164,7 @@ This example allows using both of the following example objects: { "file": "my_existing_block_device_id" } { "file": { "driver": "file", "readonly": false, - 'filename': "/tmp/mydisk.qcow2" } } + "filename": "/tmp/mydisk.qcow2" } } === Commands === |
