diff options
author | Amos Kong <akong@redhat.com> | 2014-11-25 16:05:56 +0800 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-12-10 11:14:44 +0300 |
commit | b5369dd841b55aa24dd107223e0a08d8624d1b19 (patch) | |
tree | d5370918e9ce3ef0093a80a11e8ccf60a68c50c6 /qmp-commands.hx | |
parent | 7fb8da2b8861795e0013e6ee97acd0363d868a35 (diff) |
qmp: fix typo in input-send-event examples
Lack of two closed bracket in json commands.
Signed-off-by: Amos Kong <akong@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'qmp-commands.hx')
-rw-r--r-- | qmp-commands.hx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qmp-commands.hx b/qmp-commands.hx index 718dd92f6a..47bcf87ee6 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -3820,13 +3820,13 @@ Press left mouse button. -> { "execute": "x-input-send-event", "arguments": { "console": 0, "events": [ { "type": "btn", - "data" : { "down": true, "button": "Left" } } } } + "data" : { "down": true, "button": "Left" } } ] } } <- { "return": {} } -> { "execute": "x-input-send-event", "arguments": { "console": 0, "events": [ { "type": "btn", - "data" : { "down": false, "button": "Left" } } } } + "data" : { "down": false, "button": "Left" } } ] } } <- { "return": {} } Example (2): |