From bf80035aef21dd9c84a26ed47bbd1bb4a596952f Mon Sep 17 00:00:00 2001 From: Andrey Zgarbul Date: Tue, 20 Jul 2021 11:44:03 +0300 Subject: [PATCH] rustfmt --- examples/pool.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/pool.rs b/examples/pool.rs index 7c61dfba9f..010ee44ecc 100644 --- a/examples/pool.rs +++ b/examples/pool.rs @@ -49,7 +49,9 @@ mod app { foo::spawn(x).ok().unwrap(); // send another block to the task `bar` - bar::spawn(P::alloc().unwrap().init([0u8; 128])).ok().unwrap(); + bar::spawn(P::alloc().unwrap().init([0u8; 128])) + .ok() + .unwrap(); } #[task]