[PATCH] docs: Fix typo in the default name of the qemu-system-x86_64 binary

Thomas Huth posted 1 patch 3 years ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210401051829.3169438-1-thuth@redhat.com
docs/defs.rst.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] docs: Fix typo in the default name of the qemu-system-x86_64 binary
Posted by Thomas Huth 3 years ago
It's a '-' between 'qemu' and 'system', not a '_'.

Fixes: 324b2298fe ("docs/system: convert Texinfo documentation to rST")
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 docs/defs.rst.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/defs.rst.inc b/docs/defs.rst.inc
index 48d05aaf33..52d6454b93 100644
--- a/docs/defs.rst.inc
+++ b/docs/defs.rst.inc
@@ -10,6 +10,6 @@
    incorrectly in boldface.
 
 .. |qemu_system| replace:: qemu-system-x86_64
-.. |qemu_system_x86| replace:: qemu_system-x86_64
+.. |qemu_system_x86| replace:: qemu-system-x86_64
 .. |I2C| replace:: I\ :sup:`2`\ C
 .. |I2S| replace:: I\ :sup:`2`\ S
-- 
2.27.0


Re: [PATCH] docs: Fix typo in the default name of the qemu-system-x86_64 binary
Posted by Philippe Mathieu-Daudé 3 years ago
On 4/1/21 7:18 AM, Thomas Huth wrote:
> It's a '-' between 'qemu' and 'system', not a '_'.
> 
> Fixes: 324b2298fe ("docs/system: convert Texinfo documentation to rST")
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>  docs/defs.rst.inc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>