aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2019-11-14 16:04:59 +0200
committerIgor Pashev <pashev.igor@gmail.com>2019-11-14 16:04:59 +0200
commit3f917a92ff54f4dd09cd6c00cdabaecb0a7cdd52 (patch)
tree732699ace8fd3b9fceb42b9a994a41dc4dec14e2 /src/main.rs
parent56a7a6f0fd5a281ea1bb66a0d2dfee82c29e1da7 (diff)
downloadfrotate.rs-3f917a92ff54f4dd09cd6c00cdabaecb0a7cdd52.tar.gz
Reformat
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index d6e6b85..dcffd70 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -43,9 +43,9 @@ fn main() {
let parts: LinkedList<LinkedList<NaiveDate>> =
partition_days(&|n| exponent(args.flag_base, n), &args.arg_day)
- .into_iter()
- .map(|l| l.into_iter().rev().collect())
- .collect();
+ .into_iter()
+ .map(|l| l.into_iter().rev().collect())
+ .collect();
if args.flag_keep {
for days in parts.iter() {