[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <Z9z3gCdqa+GN91SA@OneApple>
Date: Fri, 21 Mar 2025 13:22:08 +0800
From: Taotao Chen <chentaotao@...iglobal.com>
To: <a.hindborg@...nel.org>
CC: <bjorn3_gh@...tonmail.com>, <boqun.feng@...il.com>, <chentao325@...com>,
<linux-kernel@...r.kernel.org>, <rust-for-linux@...r.kernel.org>
Subject: [PATCH v2] rust: block: Remove unnecessary comma in introduction
The comma before "methods" was not needed and has been removed
for better readability and correctness.
Signed-off-by: Taotao Chen <chentaotao@...iglobal.com>
---
v1 -> v2 : Corrected message: removed comma was before "methods" not after.
rust/kernel/block/mq.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rust/kernel/block/mq.rs b/rust/kernel/block/mq.rs
index fb0f393c1cea..ee8f34f40899 100644
--- a/rust/kernel/block/mq.rs
+++ b/rust/kernel/block/mq.rs
@@ -23,7 +23,7 @@
//! IO requests are passed to the driver as [`kernel::types::ARef<Request>`]
//! instances. The `Request` type is a wrapper around the C `struct request`.
//! The driver must mark end of processing by calling one of the
-//! `Request::end`, methods. Failure to do so can lead to deadlock or timeout
+//! `Request::end` methods. Failure to do so can lead to deadlock or timeout
//! errors. Please note that the C function `blk_mq_start_request` is implicitly
//! called when the request is queued with the driver.
//!
--
2.34.1
Powered by blists - more mailing lists