diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2020-02-04 14:00:30 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2020-09-24 14:20:36 +0100 |
commit | a55886a0c1c4181f552c58ff74e35d44b36fae14 (patch) | |
tree | 706a226246e70fd3b74b44c6c4fba1c1f69ff36a | |
parent | 33cbee76b5798f470358270bcd612c01488fb9ff (diff) | |
download | qemu-arm-a55886a0c1c4181f552c58ff74e35d44b36fae14.tar.gz |
qapi/machine.json: Escape a literal '*' in doc comment
For rST, '*' is a kind of inline markup (for emphasis), so
"*-softmmu" is a syntax error because of the missing closing '*'.
Escape the '*' with a '\'.
The texinfo document generator will leave the '\' in the
output, which is not ideal, but that generator is going to
go away in a subsequent commit.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | qapi/machine.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qapi/machine.json b/qapi/machine.json index 0ac1880e4a..9c45b04363 100644 --- a/qapi/machine.json +++ b/qapi/machine.json @@ -13,7 +13,7 @@ # # The comprehensive enumeration of QEMU system emulation ("softmmu") # targets. Run "./configure --help" in the project root directory, and -# look for the *-softmmu targets near the "--target-list" option. The +# look for the \*-softmmu targets near the "--target-list" option. The # individual target constants are not documented here, for the time # being. # |