All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] docs: fix doubled-word typos in user documentation
@ 2026-05-16  0:55 Clinton Phillips
  2026-05-16  9:55 ` Philippe Mathieu-Daudé
  2026-05-18  7:59 ` Peter Maydell
  0 siblings, 2 replies; 3+ messages in thread
From: Clinton Phillips @ 2026-05-16  0:55 UTC (permalink / raw)
  To: qemu-devel; +Cc: Clinton Phillips

- docs/devel/style.rst: "assume that that type" -> "assume that type"
- docs/system/arm/aspeed.rst: "how to to boot" -> "how to boot"
- docs/system/devices/can.rst: "supported by by drivers" -> "supported by drivers"

Signed-off-by: Clinton Phillips <clintdotphillips@gmail.com>
---
 docs/devel/style.rst        | 2 +-
 docs/system/arm/aspeed.rst  | 2 +-
 docs/system/devices/can.rst | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/devel/style.rst b/docs/devel/style.rst
index b8edcf9..6b9544f 100644
--- a/docs/devel/style.rst
+++ b/docs/devel/style.rst
@@ -341,7 +341,7 @@ but only for RAM, it may not cover whole guest address space.
 If it's file-size related, use off_t.
 If it's file-offset related (i.e., signed), use off_t.
 If it's just counting small numbers use "unsigned int";
-(on all but oddball embedded systems, you can assume that that
+(on all but oddball embedded systems, you can assume that
 type is at least four bytes wide).
 
 In the event that you require a specific width, use a standard type
diff --git a/docs/system/arm/aspeed.rst b/docs/system/arm/aspeed.rst
index df2f539..3f1222d 100644
--- a/docs/system/arm/aspeed.rst
+++ b/docs/system/arm/aspeed.rst
@@ -195,7 +195,7 @@ boot mode of machine: SPI or eMMC. This can be useful to boot the
 boot the ``rainier-bmc`` machine from a flash device (default being
 eMMC).
 
-As an example, here is how to to boot the ``rainier-bmc`` machine from
+As an example, here is how to boot the ``rainier-bmc`` machine from
 the flash device with ``boot-emmc=false`` and let the machine use an
 eMMC image :
 
diff --git a/docs/system/devices/can.rst b/docs/system/devices/can.rst
index 0912183..95ee3e8 100644
--- a/docs/system/devices/can.rst
+++ b/docs/system/devices/can.rst
@@ -10,7 +10,7 @@ The concept of buses is generic and different CAN controllers
 can be implemented.
 
 The initial submission implemented SJA1000 controller which
-is common and well supported by by drivers for the most operating
+is common and well supported by drivers for the most operating
 systems.
 
 The PCI addon card hardware has been selected as the first CAN
-- 
2.49.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] docs: fix doubled-word typos in user documentation
  2026-05-16  0:55 [PATCH] docs: fix doubled-word typos in user documentation Clinton Phillips
@ 2026-05-16  9:55 ` Philippe Mathieu-Daudé
  2026-05-18  7:59 ` Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2026-05-16  9:55 UTC (permalink / raw)
  To: Clinton Phillips, qemu-devel

On 16/5/26 02:55, Clinton Phillips wrote:
> - docs/devel/style.rst: "assume that that type" -> "assume that type"
> - docs/system/arm/aspeed.rst: "how to to boot" -> "how to boot"
> - docs/system/devices/can.rst: "supported by by drivers" -> "supported by drivers"
> 
> Signed-off-by: Clinton Phillips <clintdotphillips@gmail.com>
> ---
>   docs/devel/style.rst        | 2 +-
>   docs/system/arm/aspeed.rst  | 2 +-
>   docs/system/devices/can.rst | 2 +-
>   3 files changed, 3 insertions(+), 3 deletions(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] docs: fix doubled-word typos in user documentation
  2026-05-16  0:55 [PATCH] docs: fix doubled-word typos in user documentation Clinton Phillips
  2026-05-16  9:55 ` Philippe Mathieu-Daudé
@ 2026-05-18  7:59 ` Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2026-05-18  7:59 UTC (permalink / raw)
  To: Clinton Phillips; +Cc: qemu-devel

On Sat, 16 May 2026 at 05:06, Clinton Phillips
<clintdotphillips@gmail.com> wrote:
>
> - docs/devel/style.rst: "assume that that type" -> "assume that type"
> - docs/system/arm/aspeed.rst: "how to to boot" -> "how to boot"
> - docs/system/devices/can.rst: "supported by by drivers" -> "supported by drivers"
>
> Signed-off-by: Clinton Phillips <clintdotphillips@gmail.com>
> ---
>  docs/devel/style.rst        | 2 +-
>  docs/system/arm/aspeed.rst  | 2 +-
>  docs/system/devices/can.rst | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/docs/devel/style.rst b/docs/devel/style.rst
> index b8edcf9..6b9544f 100644
> --- a/docs/devel/style.rst
> +++ b/docs/devel/style.rst
> @@ -341,7 +341,7 @@ but only for RAM, it may not cover whole guest address space.
>  If it's file-size related, use off_t.
>  If it's file-offset related (i.e., signed), use off_t.
>  If it's just counting small numbers use "unsigned int";
> -(on all but oddball embedded systems, you can assume that that
> +(on all but oddball embedded systems, you can assume that
>  type is at least four bytes wide).

This is not an error; both "that" and "that that" are OK here.
(The first one goes with "assume" to introduce the clause
we are assuming, and is optional; the second one is a determiner.)

-- PMM


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-05-18  7:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-16  0:55 [PATCH] docs: fix doubled-word typos in user documentation Clinton Phillips
2026-05-16  9:55 ` Philippe Mathieu-Daudé
2026-05-18  7:59 ` Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.