diff options
Diffstat (limited to 'embassy-sync/src')
| -rw-r--r-- | embassy-sync/src/mutex.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/embassy-sync/src/mutex.rs b/embassy-sync/src/mutex.rs index a792cf070..92101c6b5 100644 --- a/embassy-sync/src/mutex.rs +++ b/embassy-sync/src/mutex.rs | |||
| @@ -114,7 +114,9 @@ where | |||
| 114 | 114 | ||
| 115 | /// Consumes this mutex, returning the underlying data. | 115 | /// Consumes this mutex, returning the underlying data. |
| 116 | pub fn into_inner(self) -> T | 116 | pub fn into_inner(self) -> T |
| 117 | where T: Sized { | 117 | where |
| 118 | T: Sized, | ||
| 119 | { | ||
| 118 | self.inner.into_inner() | 120 | self.inner.into_inner() |
| 119 | } | 121 | } |
| 120 | 122 | ||
