diff options
| -rw-r--r-- | src/main.rs | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/main.rs b/src/main.rs index ce5d370..ef3c87d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -149,7 +149,8 @@ fn run() -> Result<(), MultiError> {      db.create()          .context("unable to create database")?; -    let errors: Vec<_> = repos[..2].par_iter() +    let errors: Vec<_> = repos[..2] +        .par_iter()          .map(|repo| {              dbg!("Thread", std::thread::current().id()); | 
