aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorTeddy Wing2021-06-13 13:02:33 +0200
committerTeddy Wing2021-06-13 13:02:33 +0200
commitb00143088926ae270f58e1f37fe7abfcc5d6b3ef (patch)
treefc76df80bfdd593053a5f7f413d9001f170127a6 /src/main.rs
parentfa002d88284fd1622f68229c47eba7c688c81ed9 (diff)
downloadreflectub-b00143088926ae270f58e1f37fe7abfcc5d6b3ef.tar.bz2
run(): Adjust whitespace
Make all chained methods indented.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
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());