diff --git a/rp2040-hal/src/pio.rs b/rp2040-hal/src/pio.rs index a04bb60eb..c6353a5c9 100644 --- a/rp2040-hal/src/pio.rs +++ b/rp2040-hal/src/pio.rs @@ -123,7 +123,7 @@ impl PIO

{ self.pio } - /// This PIO0's interrupts. + /// This PIO's IRQ0 interrupt. pub fn irq0(&self) -> Interrupt<'_, P, 0> { Interrupt { block: self.pio.deref(), @@ -131,7 +131,7 @@ impl PIO

{ } } - /// This PIO0's interrupts. + /// This PIO's IRQ1 interrupt. pub fn irq1(&self) -> Interrupt<'_, P, 1> { Interrupt { block: self.pio.deref(),