Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions embassy-usb-driver/src/host.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use core::time::Duration;

use crate::{EndpointInfo, EndpointType, Speed};

/// Errors returned by [`ChannelOut::write`] and [`ChannelIn::read`]
/// Errors returned by [`UsbChannel`] operations.
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub enum ChannelError {
Expand Down Expand Up @@ -176,7 +176,7 @@ pub trait UsbHostDriver: Sized {

/// Type-level channel markers for endpoint type and direction.
///
/// These structs and traits are used as generic parameters on [`UsbChannel`](super::UsbChannel)
/// These structs and traits are used as generic parameters on [`UsbChannel`]
/// to statically enforce correct endpoint type and direction at compile time.
///
/// All marker traits are sealed — they cannot be implemented outside this crate.
Expand Down
Loading