diff --git a/nrf52/examples/3-mutex.rs b/nrf52/examples/3-mutex.rs index 6a8c220..ea712ad 100644 --- a/nrf52/examples/3-mutex.rs +++ b/nrf52/examples/3-mutex.rs @@ -13,9 +13,9 @@ //! Expected output: //! //! ``` -//! B: before recv -//! A: before send -//! A: after send +//! B: before lock +//! A: before write +//! A: after releasing the lock //! A: yield //! B: 42 //! DONE