* [PATCH for-10.0] docs: Fix some typos (found by codespell and typos)
@ 2025-04-12 18:11 Stefan Weil via
2025-04-14 8:38 ` Daniel P. Berrangé
2025-04-14 10:27 ` Philippe Mathieu-Daudé
0 siblings, 2 replies; 3+ messages in thread
From: Stefan Weil via @ 2025-04-12 18:11 UTC (permalink / raw)
To: Daniel P . Berrangé, Thomas Huth, Michael Roth,
Paolo Bonzini, Peter Xu, David Hildenbrand, Eric Blake,
Eduardo Habkost
Cc: qemu-devel, qemu-trivial, Stefan Weil
Signed-off-by: Stefan Weil <sw@weilnetz.de>
---
docs/about/deprecated.rst | 4 ++--
docs/devel/codebase.rst | 6 +++---
docs/devel/qapi-domain.rst | 4 ++--
include/exec/memory.h | 4 ++--
qapi/qdev.json | 2 +-
5 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
index 0f41a99c67..05381441a9 100644
--- a/docs/about/deprecated.rst
+++ b/docs/about/deprecated.rst
@@ -452,7 +452,7 @@ Backend ``memory`` (since 9.0)
``reconnect`` (since 9.2)
^^^^^^^^^^^^^^^^^^^^^^^^^
-The ``reconnect`` option only allows specifiying second granularity timeouts,
+The ``reconnect`` option only allows specifying second granularity timeouts,
which is not enough for all types of use cases, use ``reconnect-ms`` instead.
@@ -462,7 +462,7 @@ Net device options
Stream ``reconnect`` (since 9.2)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-The ``reconnect`` option only allows specifiying second granularity timeouts,
+The ``reconnect`` option only allows specifying second granularity timeouts,
which is not enough for all types of use cases, use ``reconnect-ms`` instead.
VFIO device options
diff --git a/docs/devel/codebase.rst b/docs/devel/codebase.rst
index 1b09953197..ef98578296 100644
--- a/docs/devel/codebase.rst
+++ b/docs/devel/codebase.rst
@@ -5,7 +5,7 @@ Codebase
This section presents the various parts of QEMU and how the codebase is
organized.
-Beyond giving succint descriptions, the goal is to offer links to various
+Beyond giving succinct descriptions, the goal is to offer links to various
parts of the documentation/codebase.
Subsystems
@@ -67,7 +67,7 @@ yet, so sometimes the source code is all you have.
* `chardev <https://gitlab.com/qemu-project/qemu/-/tree/master/chardev>`_:
Various backends used by char devices.
* `common-user <https://gitlab.com/qemu-project/qemu/-/tree/master/common-user>`_:
- User-mode assembly code for dealing with signals occuring during syscalls.
+ User-mode assembly code for dealing with signals occurring during syscalls.
* `configs <https://gitlab.com/qemu-project/qemu/-/tree/master/configs>`_:
Makefiles defining configurations to build QEMU.
* `contrib <https://gitlab.com/qemu-project/qemu/-/tree/master/contrib>`_:
@@ -102,7 +102,7 @@ yet, so sometimes the source code is all you have.
* `.gitlab-ci.d <https://gitlab.com/qemu-project/qemu/-/tree/master/.gitlab-ci.d>`_:
`CI <ci>` yaml and scripts.
* `include <https://gitlab.com/qemu-project/qemu/-/tree/master/include>`_:
- All headers associated to different subsystems in QEMU. The hierachy used
+ All headers associated to different subsystems in QEMU. The hierarchy used
mirrors source code organization and naming.
* `hw <https://gitlab.com/qemu-project/qemu/-/tree/master/hw>`_:
`Devices <device-emulation>` and boards emulation. Devices are categorized by
diff --git a/docs/devel/qapi-domain.rst b/docs/devel/qapi-domain.rst
index a748529f51..11238723c2 100644
--- a/docs/devel/qapi-domain.rst
+++ b/docs/devel/qapi-domain.rst
@@ -41,7 +41,7 @@ Schema or generating documentation from code that exists. It is merely
the rST syntax used to describe things. For instance, the Sphinx Python
domain adds syntax like ``:py:func:`` for describing Python functions in
documentation, but it's the autodoc module that is responsible for
-reading python code and generating such syntax. QAPI is analagous here:
+reading Python code and generating such syntax. QAPI is analogous here:
qapidoc.py is responsible for reading the QAPI Schema and generating rST
syntax, and qapi_domain.py is responsible for translating that special
syntax and providing APIs for Sphinx internals.
@@ -514,7 +514,7 @@ the definition's "fully qualified name", allowing two different
namespaces to create an otherwise identically named definition.
This directive also influences how reference resolution works for any
-references that do not explicity specify a namespace, so this directive
+references that do not explicitly specify a namespace, so this directive
can be used to nudge references into preferring targets from within that
namespace.
diff --git a/include/exec/memory.h b/include/exec/memory.h
index d09af58c97..e1c196a0c2 100644
--- a/include/exec/memory.h
+++ b/include/exec/memory.h
@@ -2162,7 +2162,7 @@ void memory_region_flush_rom_device(MemoryRegion *mr, hwaddr addr, hwaddr size);
* only useful on RAM regions.
*
* @mr: the region being updated.
- * @readonly: whether rhe region is to be ROM or RAM.
+ * @readonly: whether the region is to be ROM or RAM.
*/
void memory_region_set_readonly(MemoryRegion *mr, bool readonly);
@@ -2173,7 +2173,7 @@ void memory_region_set_readonly(MemoryRegion *mr, bool readonly);
* only useful on RAM regions.
*
* @mr: the region being updated.
- * @nonvolatile: whether rhe region is to be non-volatile.
+ * @nonvolatile: whether the region is to be non-volatile.
*/
void memory_region_set_nonvolatile(MemoryRegion *mr, bool nonvolatile);
diff --git a/qapi/qdev.json b/qapi/qdev.json
index 25cbcf977b..32c7d10046 100644
--- a/qapi/qdev.json
+++ b/qapi/qdev.json
@@ -173,7 +173,7 @@
# configuration changed.
#
# The command may be used to notify the guest about block device
-# capcity change. Currently only vhost-user-blk device supports
+# capacity change. Currently only vhost-user-blk device supports
# this.
#
# @id: the device's ID or QOM path
--
2.39.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH for-10.0] docs: Fix some typos (found by codespell and typos)
2025-04-12 18:11 [PATCH for-10.0] docs: Fix some typos (found by codespell and typos) Stefan Weil via
@ 2025-04-14 8:38 ` Daniel P. Berrangé
2025-04-14 10:27 ` Philippe Mathieu-Daudé
1 sibling, 0 replies; 3+ messages in thread
From: Daniel P. Berrangé @ 2025-04-14 8:38 UTC (permalink / raw)
To: Stefan Weil
Cc: Thomas Huth, Michael Roth, Paolo Bonzini, Peter Xu,
David Hildenbrand, Eric Blake, Eduardo Habkost, qemu-devel,
qemu-trivial
On Sat, Apr 12, 2025 at 08:11:47PM +0200, Stefan Weil via wrote:
> Signed-off-by: Stefan Weil <sw@weilnetz.de>
> ---
> docs/about/deprecated.rst | 4 ++--
> docs/devel/codebase.rst | 6 +++---
> docs/devel/qapi-domain.rst | 4 ++--
> include/exec/memory.h | 4 ++--
> qapi/qdev.json | 2 +-
> 5 files changed, 10 insertions(+), 10 deletions(-)
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
With regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH for-10.0] docs: Fix some typos (found by codespell and typos)
2025-04-12 18:11 [PATCH for-10.0] docs: Fix some typos (found by codespell and typos) Stefan Weil via
2025-04-14 8:38 ` Daniel P. Berrangé
@ 2025-04-14 10:27 ` Philippe Mathieu-Daudé
1 sibling, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-04-14 10:27 UTC (permalink / raw)
To: Stefan Weil, Daniel P . Berrangé, Thomas Huth, Michael Roth,
Paolo Bonzini, Peter Xu, David Hildenbrand, Eric Blake,
Eduardo Habkost
Cc: qemu-devel, qemu-trivial
On 12/4/25 20:11, Stefan Weil via wrote:
> Signed-off-by: Stefan Weil <sw@weilnetz.de>
> ---
> docs/about/deprecated.rst | 4 ++--
> docs/devel/codebase.rst | 6 +++---
> docs/devel/qapi-domain.rst | 4 ++--
> include/exec/memory.h | 4 ++--
> qapi/qdev.json | 2 +-
> 5 files changed, 10 insertions(+), 10 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-04-14 10:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-12 18:11 [PATCH for-10.0] docs: Fix some typos (found by codespell and typos) Stefan Weil via
2025-04-14 8:38 ` Daniel P. Berrangé
2025-04-14 10:27 ` Philippe Mathieu-Daudé
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).