From 99febbe3a42ac05b723e6e76088d159eb0acfa5e Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 23 Sep 2025 13:55:55 +0200 Subject: more docs fixes --- embassy-usb-driver/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'embassy-usb-driver') diff --git a/embassy-usb-driver/src/lib.rs b/embassy-usb-driver/src/lib.rs index 3ad96c61d..59845a268 100644 --- a/embassy-usb-driver/src/lib.rs +++ b/embassy-usb-driver/src/lib.rs @@ -205,7 +205,7 @@ pub trait Bus { /// /// # Errors /// - /// * [`Unsupported`](crate::Unsupported) - This UsbBus implementation doesn't support + /// * [`Unsupported`] - This UsbBus implementation doesn't support /// simulating a disconnect or it has not been enabled at creation time. fn force_reset(&mut self) -> Result<(), Unsupported> { Err(Unsupported) @@ -215,7 +215,7 @@ pub trait Bus { /// /// # Errors /// - /// * [`Unsupported`](crate::Unsupported) - This UsbBus implementation doesn't support + /// * [`Unsupported`] - This UsbBus implementation doesn't support /// remote wakeup or it has not been enabled at creation time. async fn remote_wakeup(&mut self) -> Result<(), Unsupported>; } -- cgit