aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb-driver/src/lib.rs
diff options
context:
space:
mode:
authorGabriel Smith <[email protected]>2022-11-27 16:32:18 -0500
committerGabriel Smith <[email protected]>2022-11-27 16:32:18 -0500
commit4d84b5469ece6e7ad1597b6da41972a0ea391672 (patch)
treef7430ced5f326544ff5e7f2cee8ef8e5adbd1a2b /embassy-usb-driver/src/lib.rs
parent3ca14ba4e9feee2f0d34c8dd1c0e426d2090d8d8 (diff)
Drive-by documentation link fixes
Diffstat (limited to 'embassy-usb-driver/src/lib.rs')
-rw-r--r--embassy-usb-driver/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-usb-driver/src/lib.rs b/embassy-usb-driver/src/lib.rs
index 0a76ba6fb..9300ff812 100644
--- a/embassy-usb-driver/src/lib.rs
+++ b/embassy-usb-driver/src/lib.rs
@@ -184,7 +184,7 @@ pub trait Bus {
184 /// 184 ///
185 /// # Errors 185 /// # Errors
186 /// 186 ///
187 /// * [`Unsupported`](crate::driver::Unsupported) - This UsbBus implementation doesn't support 187 /// * [`Unsupported`](crate::Unsupported) - This UsbBus implementation doesn't support
188 /// simulating a disconnect or it has not been enabled at creation time. 188 /// simulating a disconnect or it has not been enabled at creation time.
189 fn force_reset(&mut self) -> Result<(), Unsupported> { 189 fn force_reset(&mut self) -> Result<(), Unsupported> {
190 Err(Unsupported) 190 Err(Unsupported)
@@ -194,7 +194,7 @@ pub trait Bus {
194 /// 194 ///
195 /// # Errors 195 /// # Errors
196 /// 196 ///
197 /// * [`Unsupported`](crate::driver::Unsupported) - This UsbBus implementation doesn't support 197 /// * [`Unsupported`](crate::Unsupported) - This UsbBus implementation doesn't support
198 /// remote wakeup or it has not been enabled at creation time. 198 /// remote wakeup or it has not been enabled at creation time.
199 async fn remote_wakeup(&mut self) -> Result<(), Unsupported>; 199 async fn remote_wakeup(&mut self) -> Result<(), Unsupported>;
200} 200}