Skip to content

Commit 7fec2a5

Browse files
committed
Fix typos
1 parent c10cc13 commit 7fec2a5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

avr-hal-generic/src/usart_spi.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! MSPIM Implimentation
22
use crate::{port::PinOps, spi};
33

4-
// This module just impliments a macro for SpiOps, since underlyingly, the Spi type can still be used since it just needs SpiOps
4+
// This module just implements a macro for SpiOps, since underlyingly, the Spi type can still be used since it just needs SpiOps
55

66
/// Dummy Pin for MPSPIM
77
pub struct UsartSPIDummyPin;
@@ -35,7 +35,7 @@ impl PinOps for UsartSPIDummyPin {
3535
pub type UsartSpi<H, USART, SCLKPIN, MOSIPIN, MISOPIN> =
3636
spi::Spi<H, USART, SCLKPIN, MOSIPIN, MISOPIN, UsartSPIDummyPin>;
3737

38-
// Impliment SpiOps trait for USART
38+
// Implement SpiOps trait for USART
3939
#[macro_export]
4040
macro_rules! add_usart_spi {
4141
(

mcu/atmega-hal/src/usart_spi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
//! | `atmega1284p` | 2 | Yes |
1818
//! | `atmega8` | 1 | No |
1919
20-
// Supress warning because it doesn't recognise us using it in macros properly.
20+
// Suppress warning because it doesn't recognise us using it in macros properly.
2121
#[allow(unused_imports)]
2222
use crate::port;
2323

0 commit comments

Comments
 (0)