aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/pio_programs/spi.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/spi.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/spi.rs')
-rw-r--r--embassy-rp/src/pio_programs/spi.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-rp/src/pio_programs/spi.rs b/embassy-rp/src/pio_programs/spi.rs
index b10fc6628..765ffaa06 100644
--- a/embassy-rp/src/pio_programs/spi.rs
+++ b/embassy-rp/src/pio_programs/spi.rs
@@ -1,4 +1,4 @@
1//! PIO backed SPi drivers 1//! PIO backed SPI drivers
2 2
3use core::marker::PhantomData; 3use core::marker::PhantomData;
4 4
@@ -83,7 +83,7 @@ pub enum Error {
83 // No errors for now 83 // No errors for now
84} 84}
85 85
86/// PIO based Spi driver. 86/// PIO based SPI driver.
87/// Unlike other PIO programs, the PIO SPI driver owns and holds a reference to 87/// Unlike other PIO programs, the PIO SPI driver owns and holds a reference to
88/// the PIO memory it uses. This is so that it can be reconfigured at runtime if 88/// the PIO memory it uses. This is so that it can be reconfigured at runtime if
89/// desired. 89/// desired.