* [PATCH] Fix some typos in documentation and comments
@ 2022-10-29 17:25 Stefan Weil via
2022-10-30 10:32 ` Peter Maydell
2022-10-30 18:12 ` Stefan Hajnoczi
0 siblings, 2 replies; 8+ messages in thread
From: Stefan Weil via @ 2022-10-29 17:25 UTC (permalink / raw)
To: qemu-devel
Cc: Markus Armbruster, Michael Roth, Peter Maydell, Stefan Hajnoczi,
Paolo Bonzini, Peter Xu, David Hildenbrand,
Philippe Mathieu-Daudé, Eric Blake, Daniel P . Berrangé,
Eduardo Habkost, Konstantin Kostiuk, Thomas Huth, Laurent Vivier,
qemu-arm, virtio-fs, Stefan Weil
Most of them were found and fixed using codespell.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
---
My focus was fixing typos which are relevant for the generated documentation.
codespell finds many more typos in source code, and adding it to the continuous
integration checks looks more and more like a good idea.
Stefan
docs/devel/qapi-code-gen.rst | 2 +-
docs/devel/testing.rst | 2 +-
docs/system/arm/cpu-features.rst | 2 +-
docs/system/loongarch/loongson3.rst | 2 +-
docs/tools/virtiofsd.rst | 2 +-
include/exec/memory.h | 2 +-
qapi/qom.json | 2 +-
qemu-options.hx | 8 ++++----
qga/qapi-schema.json | 2 +-
tests/qtest/libqtest.h | 2 +-
10 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/docs/devel/qapi-code-gen.rst b/docs/devel/qapi-code-gen.rst
index cd9b544376..c4c04bf755 100644
--- a/docs/devel/qapi-code-gen.rst
+++ b/docs/devel/qapi-code-gen.rst
@@ -1313,7 +1313,7 @@ Removing "unreachable" stuff like events that can't be triggered
anymore, optional return or event data members that can't be sent
anymore, and return or event data member (enumeration) values that
can't be sent anymore makes no difference to clients, except for
-introspection. The latter can conceivably confuse clients, so tread
+introspection. The latter can conceivably confuse clients, so treat
carefully.
Incompatible changes include removing return and event data members.
diff --git a/docs/devel/testing.rst b/docs/devel/testing.rst
index fbb98faabe..e10c47b5a7 100644
--- a/docs/devel/testing.rst
+++ b/docs/devel/testing.rst
@@ -99,7 +99,7 @@ successfully on various hosts. The following list shows some best practices:
* If your test cases uses the blkdebug feature, use relative path to pass
the config and image file paths in the command line as Windows absolute
path contains the delimiter ":" which will confuse the blkdebug parser.
-* Use double quotes in your extra QEMU commmand line in your test cases
+* Use double quotes in your extra QEMU command line in your test cases
instead of single quotes, as Windows does not drop single quotes when
passing the command line to QEMU.
* Windows opens a file in text mode by default, while a POSIX compliant
diff --git a/docs/system/arm/cpu-features.rst b/docs/system/arm/cpu-features.rst
index c2c01ec7d2..00c444042f 100644
--- a/docs/system/arm/cpu-features.rst
+++ b/docs/system/arm/cpu-features.rst
@@ -433,7 +433,7 @@ additional constraints on the set of vector lengths supported by SME.
SME User-mode Default Vector Length Property
--------------------------------------------
-For qemu-aarch64, the cpu propery ``sme-default-vector-length=N`` is
+For qemu-aarch64, the cpu property ``sme-default-vector-length=N`` is
defined to mirror the Linux kernel parameter file
``/proc/sys/abi/sme_default_vector_length``. The default length, ``N``,
is in units of bytes and must be between 16 and 8192.
diff --git a/docs/system/loongarch/loongson3.rst b/docs/system/loongarch/loongson3.rst
index 1bdab44e27..68113b6f5e 100644
--- a/docs/system/loongarch/loongson3.rst
+++ b/docs/system/loongarch/loongson3.rst
@@ -41,7 +41,7 @@ can be accessed by following steps.
$ qemu-system-loongarch64 -machine virt -m 4G -cpu la464-loongarch-cpu \
-smp 1 -bios QEMU_EFI.fd -kernel vmlinuz.efi -initrd initrd.img \
- -append "root=/dev/ram rdinit=/sbin/init consol e=ttyS0,115200" \
+ -append "root=/dev/ram rdinit=/sbin/init console e=ttyS0,115200" \
--nographic
Note: The running speed may be a little slow, as the performance of our
diff --git a/docs/tools/virtiofsd.rst b/docs/tools/virtiofsd.rst
index 5f5ac9dd56..995a754a7b 100644
--- a/docs/tools/virtiofsd.rst
+++ b/docs/tools/virtiofsd.rst
@@ -232,7 +232,7 @@ e.g.:
``:ok:server::security.:``
- will pass 'securty.' xattr's in listxattr from the server
+ will pass 'security.' xattr's in listxattr from the server
and ignore following rules.
``:ok:all:::``
diff --git a/include/exec/memory.h b/include/exec/memory.h
index bfb1de8eea..a751c111bd 100644
--- a/include/exec/memory.h
+++ b/include/exec/memory.h
@@ -1970,7 +1970,7 @@ void memory_region_clear_dirty_bitmap(MemoryRegion *mr, hwaddr start,
* querying the same page multiple times, which is especially useful for
* display updates where the scanlines often are not page aligned.
*
- * The dirty bitmap region which gets copyed into the snapshot (and
+ * The dirty bitmap region which gets copied into the snapshot (and
* cleared afterwards) can be larger than requested. The boundaries
* are rounded up/down so complete bitmap longs (covering 64 pages on
* 64bit hosts) can be copied over into the bitmap snapshot. Which
diff --git a/qapi/qom.json b/qapi/qom.json
index 80dd419b39..216b56a4e6 100644
--- a/qapi/qom.json
+++ b/qapi/qom.json
@@ -586,7 +586,7 @@
#
# @size: size of the memory region in bytes
#
-# @x-use-canonical-path-for-ramblock-id: if true, the canoncial path is used
+# @x-use-canonical-path-for-ramblock-id: if true, the canonical path is used
# for ramblock-id. Disable this for 4.0
# machine types or older to allow
# migration with newer QEMU versions.
diff --git a/qemu-options.hx b/qemu-options.hx
index eb38e5dc40..1141dc5e58 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -1051,7 +1051,7 @@ SRST
details on the external interface.
``-device isa-ipmi-kcs,bmc=id[,ioport=val][,irq=val]``
- Add a KCS IPMI interafce on the ISA bus. This also adds a
+ Add a KCS IPMI interface on the ISA bus. This also adds a
corresponding ACPI and SMBIOS entries, if appropriate.
``bmc=id``
@@ -1071,7 +1071,7 @@ SRST
is 0xe4 and the default interrupt is 5.
``-device pci-ipmi-kcs,bmc=id``
- Add a KCS IPMI interafce on the PCI bus.
+ Add a KCS IPMI interface on the PCI bus.
``bmc=id``
The BMC to connect to, one of ipmi-bmc-sim or ipmi-bmc-extern above.
@@ -5248,7 +5248,7 @@ SRST
read the colo-compare git log.
``-object cryptodev-backend-builtin,id=id[,queues=queues]``
- Creates a cryptodev backend which executes crypto opreation from
+ Creates a cryptodev backend which executes crypto operation from
the QEMU cipher APIS. The id parameter is a unique ID that will
be used to reference this cryptodev backend from the
``virtio-crypto`` device. The queues parameter is optional,
@@ -5516,7 +5516,7 @@ SRST
file=/etc/qemu/vnc.allow
Finally the ``/etc/qemu/vnc.allow`` file would contain the list
- of x509 distingished names that are permitted access
+ of x509 distinguished names that are permitted access
::
diff --git a/qga/qapi-schema.json b/qga/qapi-schema.json
index 026a56f76c..796434ed34 100644
--- a/qga/qapi-schema.json
+++ b/qga/qapi-schema.json
@@ -392,7 +392,7 @@
##
# @guest-file-flush:
#
-# Write file changes bufferred in userspace to disk/kernel buffers
+# Write file changes buffered in userspace to disk/kernel buffers
#
# @handle: filehandle returned by guest-file-open
#
diff --git a/tests/qtest/libqtest.h b/tests/qtest/libqtest.h
index 65c040e504..1a76bae326 100644
--- a/tests/qtest/libqtest.h
+++ b/tests/qtest/libqtest.h
@@ -727,7 +727,7 @@ bool qtest_has_device(const char *device);
* qtest_qmp_device_add_qdict:
* @qts: QTestState instance to operate on
* @drv: Name of the device that should be added
- * @arguments: QDict with properties for the device to intialize
+ * @arguments: QDict with properties for the device to initialize
*
* Generic hot-plugging test via the device_add QMP command with properties
* supplied in form of QDict. Use NULL for empty properties list.
--
2.30.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] Fix some typos in documentation and comments
2022-10-29 17:25 Stefan Weil via
@ 2022-10-30 10:32 ` Peter Maydell
2022-10-30 18:12 ` Stefan Hajnoczi
1 sibling, 0 replies; 8+ messages in thread
From: Peter Maydell @ 2022-10-30 10:32 UTC (permalink / raw)
To: Stefan Weil
Cc: qemu-devel, Markus Armbruster, Michael Roth, Stefan Hajnoczi,
Paolo Bonzini, Peter Xu, David Hildenbrand,
Philippe Mathieu-Daudé, Eric Blake, Daniel P . Berrangé,
Eduardo Habkost, Konstantin Kostiuk, Thomas Huth, Laurent Vivier,
qemu-arm, virtio-fs
On Sat, 29 Oct 2022 at 18:25, Stefan Weil <sw@weilnetz.de> wrote:
>
> Most of them were found and fixed using codespell.
>
> Signed-off-by: Stefan Weil <sw@weilnetz.de>
> ---
>
> My focus was fixing typos which are relevant for the generated documentation.
>
> codespell finds many more typos in source code, and adding it to the continuous
> integration checks looks more and more like a good idea.
>
> Stefan
>
>
> docs/devel/qapi-code-gen.rst | 2 +-
> docs/devel/testing.rst | 2 +-
> docs/system/arm/cpu-features.rst | 2 +-
> docs/system/loongarch/loongson3.rst | 2 +-
> docs/tools/virtiofsd.rst | 2 +-
> include/exec/memory.h | 2 +-
> qapi/qom.json | 2 +-
> qemu-options.hx | 8 ++++----
> qga/qapi-schema.json | 2 +-
> tests/qtest/libqtest.h | 2 +-
> 10 files changed, 13 insertions(+), 13 deletions(-)
>
> diff --git a/docs/devel/qapi-code-gen.rst b/docs/devel/qapi-code-gen.rst
> index cd9b544376..c4c04bf755 100644
> --- a/docs/devel/qapi-code-gen.rst
> +++ b/docs/devel/qapi-code-gen.rst
> @@ -1313,7 +1313,7 @@ Removing "unreachable" stuff like events that can't be triggered
> anymore, optional return or event data members that can't be sent
> anymore, and return or event data member (enumeration) values that
> can't be sent anymore makes no difference to clients, except for
> -introspection. The latter can conceivably confuse clients, so tread
> +introspection. The latter can conceivably confuse clients, so treat
> carefully.
No, the current text is correct: "tread carefully" means "be cautious".
> --- a/docs/system/loongarch/loongson3.rst
> +++ b/docs/system/loongarch/loongson3.rst
> @@ -41,7 +41,7 @@ can be accessed by following steps.
>
> $ qemu-system-loongarch64 -machine virt -m 4G -cpu la464-loongarch-cpu \
> -smp 1 -bios QEMU_EFI.fd -kernel vmlinuz.efi -initrd initrd.img \
> - -append "root=/dev/ram rdinit=/sbin/init consol e=ttyS0,115200" \
> + -append "root=/dev/ram rdinit=/sbin/init console e=ttyS0,115200" \
> --nographic
This is an error, but the fix is wrong -- the space between 'l' and 'e'
should just be deleted.
> @@ -5248,7 +5248,7 @@ SRST
> read the colo-compare git log.
>
> ``-object cryptodev-backend-builtin,id=id[,queues=queues]``
> - Creates a cryptodev backend which executes crypto opreation from
> + Creates a cryptodev backend which executes crypto operation from
Should be "operations"
> the QEMU cipher APIS. The id parameter is a unique ID that will
This should be "APIs".
The other changes in the patch look good.
thanks
-- PMM
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Fix some typos in documentation and comments
2022-10-29 17:25 Stefan Weil via
2022-10-30 10:32 ` Peter Maydell
@ 2022-10-30 18:12 ` Stefan Hajnoczi
1 sibling, 0 replies; 8+ messages in thread
From: Stefan Hajnoczi @ 2022-10-30 18:12 UTC (permalink / raw)
To: Stefan Weil
Cc: qemu-devel, Markus Armbruster, Michael Roth, Peter Maydell,
Stefan Hajnoczi, Paolo Bonzini, Peter Xu, David Hildenbrand,
Philippe Mathieu-Daudé, Eric Blake, Daniel P . Berrangé,
Eduardo Habkost, Konstantin Kostiuk, Thomas Huth, Laurent Vivier,
qemu-arm, virtio-fs
On Sat, 29 Oct 2022 at 13:27, Stefan Weil via <qemu-devel@nongnu.org> wrote:
>
> Most of them were found and fixed using codespell.
>
> Signed-off-by: Stefan Weil <sw@weilnetz.de>
> ---
Aside from Peter's comments:
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] Fix some typos in documentation and comments
@ 2023-07-30 18:03 Stefan Weil via
2023-07-31 9:37 ` Peter Maydell
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Stefan Weil via @ 2023-07-30 18:03 UTC (permalink / raw)
To: Paolo Bonzini, Eduardo Habkost, Daniel P . Berrangé,
Keith Busch, Klaus Jensen, Peter Xu, David Hildenbrand,
Philippe Mathieu-Daudé, Gerd Hoffmann,
Marc-André Lureau
Cc: libvir-list, qemu-block, qemu-devel, qemu-trivial, Stefan Weil
Signed-off-by: Stefan Weil <sw@weilnetz.de>
---
This patch was triggered by a spelling check for the generated
QEMU documentation using codespell. It does not try to fix all
typos which still exist in the QEMU code, but has a focus on
those required to fix the documentation. Nevertheless some code
comments with the same typos were fixed, too.
I think the patch is trivial, so maybe it can still be included
in the upcoming release, but that's not strictly necessary.
Stefan
docs/about/deprecated.rst | 2 +-
docs/devel/qom.rst | 2 +-
docs/system/devices/nvme.rst | 2 +-
hw/core/loader.c | 4 ++--
include/exec/memory.h | 2 +-
ui/vnc-enc-tight.c | 2 +-
6 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
index 1c35f55666..92a2bafd2b 100644
--- a/docs/about/deprecated.rst
+++ b/docs/about/deprecated.rst
@@ -369,7 +369,7 @@ mapping permissions et al by using its 'mapped' security model option.
Nowadays it would make sense to reimplement the ``proxy`` backend by using
QEMU's ``vhost`` feature, which would eliminate the high latency costs under
which the 9p ``proxy`` backend currently suffers. However as of to date nobody
-has indicated plans for such kind of reimplemention unfortunately.
+has indicated plans for such kind of reimplementation unfortunately.
Block device options
diff --git a/docs/devel/qom.rst b/docs/devel/qom.rst
index 0b506426d7..9918fac7f2 100644
--- a/docs/devel/qom.rst
+++ b/docs/devel/qom.rst
@@ -30,7 +30,7 @@ user configuration.
Creating a QOM class
====================
-A simple minimal device implementation may look something like bellow:
+A simple minimal device implementation may look something like below:
.. code-block:: c
:caption: Creating a minimal type
diff --git a/docs/system/devices/nvme.rst b/docs/system/devices/nvme.rst
index a8bb8d729c..2a3af268f7 100644
--- a/docs/system/devices/nvme.rst
+++ b/docs/system/devices/nvme.rst
@@ -232,7 +232,7 @@ parameters:
Set the number of Reclaim Groups.
``fdp.nruh`` (default: ``0``)
- Set the number of Reclaim Unit Handles. This is a mandatory paramater and
+ Set the number of Reclaim Unit Handles. This is a mandatory parameter and
must be non-zero.
``fdp.runs`` (default: ``96M``)
diff --git a/hw/core/loader.c b/hw/core/loader.c
index 8b7fd9e9e5..4dd5a71fb7 100644
--- a/hw/core/loader.c
+++ b/hw/core/loader.c
@@ -863,7 +863,7 @@ ssize_t load_image_gzipped(const char *filename, hwaddr addr, uint64_t max_sz)
/*
* The Linux header magic number for a EFI PE/COFF
- * image targetting an unspecified architecture.
+ * image targeting an unspecified architecture.
*/
#define EFI_PE_LINUX_MAGIC "\xcd\x23\x82\x81"
@@ -1492,7 +1492,7 @@ RomGap rom_find_largest_gap_between(hwaddr base, size_t size)
if (rom->mr || rom->fw_file) {
continue;
}
- /* ignore anything finishing bellow base */
+ /* ignore anything finishing below base */
if (rom->addr + rom->romsize <= base) {
continue;
}
diff --git a/include/exec/memory.h b/include/exec/memory.h
index 7f5c11a0cc..68284428f8 100644
--- a/include/exec/memory.h
+++ b/include/exec/memory.h
@@ -942,7 +942,7 @@ struct MemoryListener {
*
* @listener: The #MemoryListener.
* @last_stage: The last stage to synchronize the log during migration.
- * The caller should gurantee that the synchronization with true for
+ * The caller should guarantee that the synchronization with true for
* @last_stage is triggered for once after all VCPUs have been stopped.
*/
void (*log_sync_global)(MemoryListener *listener, bool last_stage);
diff --git a/ui/vnc-enc-tight.c b/ui/vnc-enc-tight.c
index 09200d71b8..ee853dcfcb 100644
--- a/ui/vnc-enc-tight.c
+++ b/ui/vnc-enc-tight.c
@@ -77,7 +77,7 @@ static int tight_send_framebuffer_update(VncState *vs, int x, int y,
#ifdef CONFIG_VNC_JPEG
static const struct {
- double jpeg_freq_min; /* Don't send JPEG if the freq is bellow */
+ double jpeg_freq_min; /* Don't send JPEG if the freq is below */
double jpeg_freq_threshold; /* Always send JPEG if the freq is above */
int jpeg_idx; /* Allow indexed JPEG */
int jpeg_full; /* Allow full color JPEG */
--
2.39.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] Fix some typos in documentation and comments
2023-07-30 18:03 [PATCH] Fix some typos in documentation and comments Stefan Weil via
@ 2023-07-31 9:37 ` Peter Maydell
2023-07-31 9:57 ` Philippe Mathieu-Daudé
` (2 subsequent siblings)
3 siblings, 0 replies; 8+ messages in thread
From: Peter Maydell @ 2023-07-31 9:37 UTC (permalink / raw)
To: Stefan Weil
Cc: Paolo Bonzini, Eduardo Habkost, Daniel P . Berrangé,
Keith Busch, Klaus Jensen, Peter Xu, David Hildenbrand,
Philippe Mathieu-Daudé, Gerd Hoffmann,
Marc-André Lureau, libvir-list, qemu-block, qemu-devel,
qemu-trivial
On Sun, 30 Jul 2023 at 19:55, Stefan Weil via <qemu-devel@nongnu.org> wrote:
>
> Signed-off-by: Stefan Weil <sw@weilnetz.de>
> ---
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
thanks
-- PMM
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Fix some typos in documentation and comments
2023-07-30 18:03 [PATCH] Fix some typos in documentation and comments Stefan Weil via
2023-07-31 9:37 ` Peter Maydell
@ 2023-07-31 9:57 ` Philippe Mathieu-Daudé
2023-08-01 21:44 ` Philippe Mathieu-Daudé
2023-08-02 14:13 ` Michael Tokarev
3 siblings, 0 replies; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2023-07-31 9:57 UTC (permalink / raw)
To: Stefan Weil, Paolo Bonzini, Eduardo Habkost,
Daniel P . Berrangé, Keith Busch, Klaus Jensen, Peter Xu,
David Hildenbrand, Gerd Hoffmann, Marc-André Lureau
Cc: libvir-list, qemu-block, qemu-devel, qemu-trivial
On 30/7/23 20:03, Stefan Weil wrote:
> Signed-off-by: Stefan Weil <sw@weilnetz.de>
> ---
>
> This patch was triggered by a spelling check for the generated
> QEMU documentation using codespell. It does not try to fix all
> typos which still exist in the QEMU code, but has a focus on
> those required to fix the documentation. Nevertheless some code
> comments with the same typos were fixed, too.
>
> I think the patch is trivial, so maybe it can still be included
> in the upcoming release, but that's not strictly necessary.
>
> Stefan
>
> docs/about/deprecated.rst | 2 +-
> docs/devel/qom.rst | 2 +-
> docs/system/devices/nvme.rst | 2 +-
> hw/core/loader.c | 4 ++--
> include/exec/memory.h | 2 +-
> ui/vnc-enc-tight.c | 2 +-
> 6 files changed, 7 insertions(+), 7 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Fix some typos in documentation and comments
2023-07-30 18:03 [PATCH] Fix some typos in documentation and comments Stefan Weil via
2023-07-31 9:37 ` Peter Maydell
2023-07-31 9:57 ` Philippe Mathieu-Daudé
@ 2023-08-01 21:44 ` Philippe Mathieu-Daudé
2023-08-02 14:13 ` Michael Tokarev
3 siblings, 0 replies; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2023-08-01 21:44 UTC (permalink / raw)
To: Stefan Weil, Paolo Bonzini, Eduardo Habkost,
Daniel P . Berrangé, Keith Busch, Klaus Jensen, Peter Xu,
David Hildenbrand, Gerd Hoffmann, Marc-André Lureau
Cc: libvir-list, qemu-block, qemu-devel, qemu-trivial
On 30/7/23 20:03, Stefan Weil wrote:
> Signed-off-by: Stefan Weil <sw@weilnetz.de>
> ---
>
> This patch was triggered by a spelling check for the generated
> QEMU documentation using codespell. It does not try to fix all
> typos which still exist in the QEMU code, but has a focus on
> those required to fix the documentation. Nevertheless some code
> comments with the same typos were fixed, too.
>
> I think the patch is trivial, so maybe it can still be included
> in the upcoming release, but that's not strictly necessary.
>
> Stefan
>
> docs/about/deprecated.rst | 2 +-
> docs/devel/qom.rst | 2 +-
> docs/system/devices/nvme.rst | 2 +-
> hw/core/loader.c | 4 ++--
> include/exec/memory.h | 2 +-
> ui/vnc-enc-tight.c | 2 +-
> 6 files changed, 7 insertions(+), 7 deletions(-)
Thanks, queued via misc-fixes.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Fix some typos in documentation and comments
2023-07-30 18:03 [PATCH] Fix some typos in documentation and comments Stefan Weil via
` (2 preceding siblings ...)
2023-08-01 21:44 ` Philippe Mathieu-Daudé
@ 2023-08-02 14:13 ` Michael Tokarev
3 siblings, 0 replies; 8+ messages in thread
From: Michael Tokarev @ 2023-08-02 14:13 UTC (permalink / raw)
To: Stefan Weil, Paolo Bonzini, Eduardo Habkost,
Daniel P . Berrangé, Keith Busch, Klaus Jensen, Peter Xu,
David Hildenbrand, Philippe Mathieu-Daudé, Gerd Hoffmann,
Marc-André Lureau
Cc: libvir-list, qemu-block, qemu-devel, qemu-trivial
30.07.2023 21:03, Stefan Weil via wrote:
> Signed-off-by: Stefan Weil <sw@weilnetz.de>
> ---
>
> This patch was triggered by a spelling check for the generated
> QEMU documentation using codespell. It does not try to fix all
> typos which still exist in the QEMU code, but has a focus on
> those required to fix the documentation. Nevertheless some code
> comments with the same typos were fixed, too.
>
> I think the patch is trivial, so maybe it can still be included
> in the upcoming release, but that's not strictly necessary.
>
> Stefan
>
> docs/about/deprecated.rst | 2 +-
> docs/devel/qom.rst | 2 +-
> docs/system/devices/nvme.rst | 2 +-
> hw/core/loader.c | 4 ++--
> include/exec/memory.h | 2 +-
> ui/vnc-enc-tight.c | 2 +-
> 6 files changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
> index 1c35f55666..92a2bafd2b 100644
> --- a/docs/about/deprecated.rst
> +++ b/docs/about/deprecated.rst
> @@ -369,7 +369,7 @@ mapping permissions et al by using its 'mapped' security model option.
> Nowadays it would make sense to reimplement the ``proxy`` backend by using
> QEMU's ``vhost`` feature, which would eliminate the high latency costs under
> which the 9p ``proxy`` backend currently suffers. However as of to date nobody
> -has indicated plans for such kind of reimplemention unfortunately.
> +has indicated plans for such kind of reimplementation unfortunately.
FWIW, all these changes has been included in my "tree-wide spelling" series.
This particular change:
https://lists.nongnu.org/archive/html/qemu-devel/2023-07/msg03011.html
/mjt
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-08-02 14:14 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-30 18:03 [PATCH] Fix some typos in documentation and comments Stefan Weil via
2023-07-31 9:37 ` Peter Maydell
2023-07-31 9:57 ` Philippe Mathieu-Daudé
2023-08-01 21:44 ` Philippe Mathieu-Daudé
2023-08-02 14:13 ` Michael Tokarev
-- strict thread matches above, loose matches on Subject: below --
2022-10-29 17:25 Stefan Weil via
2022-10-30 10:32 ` Peter Maydell
2022-10-30 18:12 ` Stefan Hajnoczi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).