Fix a typo

This commit is contained in:
Kentaro Okuda 2022-12-30 08:53:16 -05:00
parent 3478004b4d
commit 72bb4f8798

View file

@ -166,7 +166,7 @@ impl<'d, T: Instance> Uarte<'d, T> {
}
/// Split the Uarte into a transmitter and receiver, which is
/// particuarly useful when having two tasks correlating to
/// particularly useful when having two tasks correlating to
/// transmitting and receiving.
pub fn split(self) -> (UarteTx<'d, T>, UarteRx<'d, T>) {
(self.tx, self.rx)