qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

qapi/ui.json: Avoid `...' Texinfo style quoting

Avoid Texinfo style quoting with `...', because we would like to
switch the doc comments to rST format, and rST treats it as a syntax
error. Use '...' instead, as we do in other doc comments. This looks
OK in Texinfo, and rST formats it as paired-quotation-marks.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20200213175647.17628-13-peter.maydell@linaro.org>
[Commit message tweaked]
Signed-off-by: Markus Armbruster <armbru@redhat.com>

authored by

Peter Maydell and committed by
Markus Armbruster
449be9df 43d7c2d0

+12 -12
+12 -12
qapi/ui.json
··· 12 12 # 13 13 # Sets the password of a remote display session. 14 14 # 15 - # @protocol: `vnc' to modify the VNC server password 16 - # `spice' to modify the Spice server password 15 + # @protocol: 'vnc' to modify the VNC server password 16 + # 'spice' to modify the Spice server password 17 17 # 18 18 # @password: the new password 19 19 # 20 20 # @connected: how to handle existing clients when changing the 21 - # password. If nothing is specified, defaults to `keep' 22 - # `fail' to fail the command if clients are connected 23 - # `disconnect' to disconnect existing clients 24 - # `keep' to maintain existing clients 21 + # password. If nothing is specified, defaults to 'keep' 22 + # 'fail' to fail the command if clients are connected 23 + # 'disconnect' to disconnect existing clients 24 + # 'keep' to maintain existing clients 25 25 # 26 26 # Returns: Nothing on success 27 27 # If Spice is not enabled, DeviceNotFound ··· 43 43 # 44 44 # Expire the password of a remote display server. 45 45 # 46 - # @protocol: the name of the remote display protocol `vnc' or `spice' 46 + # @protocol: the name of the remote display protocol 'vnc' or 'spice' 47 47 # 48 48 # @time: when to expire the password. 49 - # `now' to expire the password immediately 50 - # `never' to cancel password expiration 51 - # `+INT' where INT is the number of seconds from now (integer) 52 - # `INT' where INT is the absolute time in seconds 49 + # 'now' to expire the password immediately 50 + # 'never' to cancel password expiration 51 + # '+INT' where INT is the number of seconds from now (integer) 52 + # 'INT' where INT is the absolute time in seconds 53 53 # 54 54 # Returns: Nothing on success 55 - # If @protocol is `spice' and Spice is not active, DeviceNotFound 55 + # If @protocol is 'spice' and Spice is not active, DeviceNotFound 56 56 # 57 57 # Since: 0.14.0 58 58 #