From a0f7d2f25aeee6be67922afc4735dd232e9e92f3 Mon Sep 17 00:00:00 2001 From: Ray Slakinski Date: Thu, 3 Dec 2020 14:26:31 -0500 Subject: [PATCH] fix whitespace --- 2020/day_1/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2020/day_1/src/main.rs b/2020/day_1/src/main.rs index 8a24949..906f7b6 100644 --- a/2020/day_1/src/main.rs +++ b/2020/day_1/src/main.rs @@ -1,5 +1,5 @@ fn main() { - let mut v: Vec = Vec::new(); + let mut v: Vec = Vec::new(); let contents = std::fs::read_to_string("input1").unwrap(); for s in contents.lines() { v.push(s.parse::().unwrap());