We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62330b5 commit 3e56826Copy full SHA for 3e56826
examples/serial_echo_irq.rs
@@ -32,7 +32,7 @@ context in order to be borrowed. Since CriticalSection
32
contexts cannot overlap (by definition) we can rest assured
33
that the resource inside the Mutex will not violate
34
the RefMut's runtime borrowing rules (Given that we do not
35
-try to borrow the RefMute more than once per CriticalSection).
+try to borrow the RefMut more than once per CriticalSection).
36
*/
37
static LED: Mutex<RefCell<Option<LED_PIN>>> = Mutex::new(RefCell::new(None));
38
static SER_PORT: Mutex<RefCell<Option<SERIAL>>> = Mutex::new(RefCell::new(None));
0 commit comments