aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoakim Hulthe <[email protected]>2022-09-16 10:44:33 +0200
committerMathias <[email protected]>2022-09-23 07:58:48 +0200
commit3f672c8a934602d444061ab0880ed415777d21f6 (patch)
tree8a5a2d0175e0e57beb6d6de27eff5d507870d099
parente5af4c4bcef8a826d14f741fd72ab99ad930a626 (diff)
Make rustfmt happy
-rw-r--r--embassy-sync/src/mutex.rs4
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