diff options
author | 2020-04-21 21:57:13 +0200 | |
---|---|---|
committer | 2020-04-21 21:57:13 +0200 | |
commit | b4635839218108d4c68158ad38ca26e063137f79 (patch) | |
tree | ca7e05f70e71196c9ce86cdd098855491ff3ceed | |
parent | 64ff1e185001fdb3d56b7fc166db08713e0d97d2 (diff) | |
download | cortex-m-b4635839218108d4c68158ad38ca26e063137f79.tar.gz cortex-m-b4635839218108d4c68158ad38ca26e063137f79.tar.zst cortex-m-b4635839218108d4c68158ad38ca26e063137f79.zip |
Update src/mutex.rs
Co-Authored-By: Jonas Schievink <jonasschievink@gmail.com>
-rw-r--r-- | src/mutex.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mutex.rs b/src/mutex.rs index 6948512..86bd5d5 100644 --- a/src/mutex.rs +++ b/src/mutex.rs @@ -2,7 +2,7 @@ use core::cell::UnsafeCell; -/// A critical section based mutex +/// A critical section based mutex. pub struct CriticalSectionMutex<T> { data: UnsafeCell<T>, } |