diff options
author | Eric Blake <eblake@redhat.com> | 2013-10-19 17:52:33 +0100 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2013-10-26 13:01:58 +0400 |
commit | 63922c647730eba01865e05bf1e80dd7d682e287 (patch) | |
tree | df9229001018750844514f83df044a138acddb25 /docs | |
parent | eb02dc0b118c87a366002e3a725ab3373e1738db (diff) |
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')
-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 === |