All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] docs: fix typo
@ 2023-12-14 22:53 Samuel Tardieu
  2023-12-15  2:59 ` Zhao Liu
  2023-12-23 16:36 ` Michael Tokarev
  0 siblings, 2 replies; 8+ messages in thread
From: Samuel Tardieu @ 2023-12-14 22:53 UTC (permalink / raw)
  To: qemu-devel
  Cc: Kevin Wolf, qemu-block, Hanna Reitz, qemu-trivial, Samuel Tardieu

Signed-off-by: Samuel Tardieu <sam@rfc1149.net>
---
 docs/tools/qemu-img.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/tools/qemu-img.rst b/docs/tools/qemu-img.rst
index 4459c065f1..3653adb963 100644
--- a/docs/tools/qemu-img.rst
+++ b/docs/tools/qemu-img.rst
@@ -406,7 +406,7 @@ Command description:
   Compare exits with ``0`` in case the images are equal and with ``1``
   in case the images differ. Other exit codes mean an error occurred during
   execution and standard error output should contain an error message.
-  The following table sumarizes all exit codes of the compare subcommand:
+  The following table summarizes all exit codes of the compare subcommand:
 
   0
     Images are identical (or requested help was printed)
-- 
2.42.0



^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [PATCH] docs: Fix typo
@ 2024-10-02 10:58 KK Surendran
  2024-10-02 13:40 ` Guenter Roeck
  0 siblings, 1 reply; 8+ messages in thread
From: KK Surendran @ 2024-10-02 10:58 UTC (permalink / raw)
  To: jdelvare
  Cc: linux, corbet, linux-hwmon, linux-doc, linux-kernel, KK Surendran

Fix typo in Documentation/hwmon/max31827.rst -
"respresents" to "represents"

Signed-off-by: KK Surendran <kksurendran95@gmail.com>
---
 Documentation/hwmon/max31827.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/hwmon/max31827.rst b/Documentation/hwmon/max31827.rst
index 9c11a9518..4a7d12934 100644
--- a/Documentation/hwmon/max31827.rst
+++ b/Documentation/hwmon/max31827.rst
@@ -136,7 +136,7 @@ PEC Support
 
 When reading a register value, the PEC byte is computed and sent by the chip.
 
-PEC on word data transaction respresents a signifcant increase in bandwitdh
+PEC on word data transaction represents a signifcant increase in bandwitdh
 usage (+33% for both write and reads) in normal conditions.
 
 Since this operation implies there will be an extra delay to each
-- 
2.46.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [PATCH] docs: Fix typo
@ 2024-10-02 10:13 KK Surendran
  0 siblings, 0 replies; 8+ messages in thread
From: KK Surendran @ 2024-10-02 10:13 UTC (permalink / raw)
  To: maarten.lankhorst
  Cc: mripard, tzimmermann, airlied, simona, corbet, dri-devel,
	linux-doc, linux-kernel, KK Surendran

Fix typo in Documentation/gpu/rfc/i915_scheduler.rst -
"paralllel" to "parallel"

Signed-off-by: KK Surendran <kksurendran95@gmail.com>
---
 Documentation/gpu/rfc/i915_scheduler.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/gpu/rfc/i915_scheduler.rst b/Documentation/gpu/rfc/i915_scheduler.rst
index c237ebc02..2974525f0 100644
--- a/Documentation/gpu/rfc/i915_scheduler.rst
+++ b/Documentation/gpu/rfc/i915_scheduler.rst
@@ -26,7 +26,7 @@ i915 with the DRM scheduler is:
 	  which configures a slot with N contexts
 	* After I915_CONTEXT_ENGINES_EXT_PARALLEL a user can submit N batches to
 	  a slot in a single execbuf IOCTL and the batches run on the GPU in
-	  paralllel
+	  parallel
 	* Initially only for GuC submission but execlists can be supported if
 	  needed
 * Convert the i915 to use the DRM scheduler
-- 
2.46.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [PATCH] docs: Fix Typo
@ 2022-08-01 18:10 Max Dunbar
  2022-08-08 15:59 ` Guenter Roeck
  0 siblings, 1 reply; 8+ messages in thread
From: Max Dunbar @ 2022-08-01 18:10 UTC (permalink / raw)
  To: jdelvare, linux, corbet, linux-hwmon, linux-doc, linux-kernel

Correcting "wil" to "will" in the hwmon documentation

Signed-off-by: Max Dunbar <mdsurfing4@gmail.com>
---
 Documentation/hwmon/hwmon-kernel-api.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/hwmon/hwmon-kernel-api.rst b/Documentation/hwmon/hwmon-kernel-api.rst
index f3276b3a381a..a4755a5a24af 100644
--- a/Documentation/hwmon/hwmon-kernel-api.rst
+++ b/Documentation/hwmon/hwmon-kernel-api.rst
@@ -57,7 +57,7 @@ register/unregister functions::
 hwmon_device_register_with_groups registers a hardware monitoring device.
 The first parameter of this function is a pointer to the parent device.
 The name parameter is a pointer to the hwmon device name. The registration
-function wil create a name sysfs attribute pointing to this name.
+function will create a name sysfs attribute pointing to this name.
 The drvdata parameter is the pointer to the local driver data.
 hwmon_device_register_with_groups will attach this pointer to the newly
 allocated hwmon device. The pointer can be retrieved by the driver using
-- 
2.25.1


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

end of thread, other threads:[~2024-10-02 13:40 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-14 22:53 [PATCH] docs: fix typo Samuel Tardieu
2023-12-15  2:59 ` Zhao Liu
2023-12-23 16:36 ` Michael Tokarev
  -- strict thread matches above, loose matches on Subject: below --
2024-10-02 10:58 [PATCH] docs: Fix typo KK Surendran
2024-10-02 13:40 ` Guenter Roeck
2024-10-02 10:13 KK Surendran
2022-08-01 18:10 [PATCH] docs: Fix Typo Max Dunbar
2022-08-08 15:59 ` Guenter Roeck

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.