]> git.proxmox.com Git - qemu-server.git/commitdiff
Use backticks instead of single quotes in qm resize description
authorEmmanuel Kasper <e.kasper@proxmox.com>
Wed, 1 Mar 2017 09:31:54 +0000 (10:31 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 2 Mar 2017 09:38:19 +0000 (10:38 +0100)
Single quoted text in asciidoc is rendered in man pages
with underlines, which makes the '+' symbol very similar to '+/-'

Backticks are rendered with monospace text in HTML, normal text
in man pages, and still readable in raw format.

PVE/API2/Qemu.pm

index fb5d38c04b2e165c57a7e7a7f27ea7c626422dff..7b3a525f184e5abd25fbede6ca95968d50fc480a 100644 (file)
@@ -2985,7 +2985,7 @@ __PACKAGE__->register_method({
            size => {
                type => 'string',
                pattern => '\+?\d+(\.\d+)?[KMGT]?',
-               description => "The new size. With the '+' sign the value is added to the actual size of the volume and without it, the value is taken as an absolute one. Shrinking disk size is not supported.",
+               description => "The new size. With the `+` sign the value is added to the actual size of the volume and without it, the value is taken as an absolute one. Shrinking disk size is not supported.",
            },
            digest => {
                type => 'string',