Skip to content

Commit 2db4a18

Browse files
committed
Fix doc
1 parent 7fec2a5 commit 2db4a18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

avr-hal-generic/src/usart_spi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ macro_rules! add_usart_spi {
4848
) => {
4949
$crate::paste::paste! {
5050
// This is quite a messy way to get the doc string working properly... but it works!
51-
#[doc = concat!("**Clock:** `", stringify!($sclkpin), "`<br>**MOSI:** `", stringify!($mosipin), "`<br> **MISO:** `", stringify!($misopin), "`<br> **CS:** `", stringify!($cspin), "`")]
51+
#[doc = concat!("**Clock:** `", stringify!($sclkpin), "`<br>**MOSI:** `", stringify!($mosipin), "`<br> **MISO:** `", stringify!($misopin), "`")]
5252
pub type [<Usart $n Spi>] = avr_hal_generic::usart_spi::UsartSpi<$HAL, $USART_SPI, $sclkpin, $mosipin, $misopin>;
5353

5454
impl $crate::spi::SpiOps<$HAL, $sclkpin, $mosipin, $misopin, $crate::usart_spi::UsartSPIDummyPin> for $USART_SPI {

0 commit comments

Comments
 (0)