Skip to content

Commit 3e56826

Browse files
committed
fix typo
1 parent 62330b5 commit 3e56826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/serial_echo_irq.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ context in order to be borrowed. Since CriticalSection
3232
contexts cannot overlap (by definition) we can rest assured
3333
that the resource inside the Mutex will not violate
3434
the RefMut's runtime borrowing rules (Given that we do not
35-
try to borrow the RefMute more than once per CriticalSection).
35+
try to borrow the RefMut more than once per CriticalSection).
3636
*/
3737
static LED: Mutex<RefCell<Option<LED_PIN>>> = Mutex::new(RefCell::new(None));
3838
static SER_PORT: Mutex<RefCell<Option<SERIAL>>> = Mutex::new(RefCell::new(None));

0 commit comments

Comments
 (0)