aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/pio_programs/uart.rs
diff options
context:
space:
mode:
authorRob Wells <[email protected]>2025-10-27 15:23:54 +0000
committerRob Wells <[email protected]>2025-10-27 15:30:21 +0000
commit7ef9a6453a0a2a286741d47fcb99170d802f7d7d (patch)
tree3f757273e8749994df3e8c5f0f9b1e6d1ac99e2f /embassy-rp/src/pio_programs/uart.rs
parent4c9efcd785eed99c3581373b77b4d3a1f559530c (diff)
embassy-rp: doc comment spelling pass
All changes but one are to documentation comments, and one to an ordinary comment.
Diffstat (limited to 'embassy-rp/src/pio_programs/uart.rs')
-rw-r--r--embassy-rp/src/pio_programs/uart.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-rp/src/pio_programs/uart.rs b/embassy-rp/src/pio_programs/uart.rs
index 444efb5db..d59596dd1 100644
--- a/embassy-rp/src/pio_programs/uart.rs
+++ b/embassy-rp/src/pio_programs/uart.rs
@@ -130,7 +130,7 @@ impl<'d, PIO: Instance> PioUartRxProgram<'d, PIO> {
130 } 130 }
131} 131}
132 132
133/// PIO backed Uart reciever 133/// PIO backed Uart receiver
134pub struct PioUartRx<'d, PIO: Instance, const SM: usize> { 134pub struct PioUartRx<'d, PIO: Instance, const SM: usize> {
135 sm_rx: StateMachine<'d, PIO, SM>, 135 sm_rx: StateMachine<'d, PIO, SM>,
136} 136}