From 31bc0aade4e03a056a6b568571e59d3783c97ffc Mon Sep 17 00:00:00 2001 From: Marko Turk Date: Mon, 5 Jan 2026 22:37:42 +0100 Subject: [PATCH] rust: io: remove square brackets from pci::Bar reference Remove square brackets since this section is not a part of doc-comment so the reference will not be converted to a link in the generated docs. Suggested-by: Danilo Krummrich Signed-off-by: Marko Turk Link: https://patch.msgid.link/20260105213726.73000-1-mt@markoturk.info Signed-off-by: Danilo Krummrich --- rust/kernel/io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/kernel/io.rs b/rust/kernel/io.rs index 98e8b84e68d11..a97eb44a9a877 100644 --- a/rust/kernel/io.rs +++ b/rust/kernel/io.rs @@ -87,7 +87,7 @@ impl IoRaw { /// }; /// use core::ops::Deref; /// -/// // See also [`pci::Bar`] for a real example. +/// // See also `pci::Bar` for a real example. /// struct IoMem(IoRaw); /// /// impl IoMem { -- 2.47.3