aboutsummaryrefslogtreecommitdiff
path: root/embassy-traits/src
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2021-12-16 11:37:53 +0100
committerUlf Lilleengen <[email protected]>2021-12-16 11:37:53 +0100
commit2bbd1ddb8a0e36e91a2b328024f313b780b1b851 (patch)
tree4e41c56f0032f811faac07bc98f93b522ea2e1f3 /embassy-traits/src
parent985c11fad5d666485b809b846d294a1a2492b370 (diff)
Remove unneeded rustfmt::skip
Diffstat (limited to 'embassy-traits/src')
-rw-r--r--embassy-traits/src/rng.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/embassy-traits/src/rng.rs b/embassy-traits/src/rng.rs
index ac4463ee6..ec97406b0 100644
--- a/embassy-traits/src/rng.rs
+++ b/embassy-traits/src/rng.rs
@@ -4,10 +4,9 @@ use core::future::Future;
4pub trait Rng { 4pub trait Rng {
5 type Error; 5 type Error;
6 6
7 #[rustfmt::skip] 7 type RngFuture<'a>: Future<Output = Result<(), Self::Error>> + 'a
8 type RngFuture<'a>: Future<Output = Result<(), Self::Error> > + 'a
9 where 8 where
10 Self: 'a; 9 Self: 'a;
11 10
12 /// Completely fill the provided buffer with random bytes. 11 /// Completely fill the provided buffer with random bytes.
13 /// 12 ///