diff options
| author | Joakim Hulthe <[email protected]> | 2022-09-16 10:44:33 +0200 |
|---|---|---|
| committer | Joakim Hulthe <[email protected]> | 2022-09-16 10:45:01 +0200 |
| commit | 79654510b71290632ee659dd2ae1851f33f48374 (patch) | |
| tree | 8a5a2d0175e0e57beb6d6de27eff5d507870d099 /embassy-sync/src/mutex.rs | |
| parent | 70a3b85acc3b87abab5a66b1a02da033789b5e1a (diff) | |
Make rustfmt happy
Diffstat (limited to 'embassy-sync/src/mutex.rs')
| -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 | ||
