~janbaudisch/aoc-2018

981c5ce1258dad4d6cde6cbc730ac959851d2b74 — Jan Baudisch 4 years ago 5aad3db
fix formatting
2 files changed, 2 insertions(+), 3 deletions(-)

D .rustfmt.toml
M common/src/input.rs
D .rustfmt.toml => .rustfmt.toml +0 -1
@@ 1,1 0,0 @@
trailing_comma = "Never"

M common/src/input.rs => common/src/input.rs +2 -2
@@ 7,7 7,7 @@ pub fn read_line() -> String {
        Ok(_) => {
            input.pop();
        }
        Err(error) => panic!("{}", error)
        Err(error) => panic!("{}", error),
    }

    input


@@ 29,7 29,7 @@ pub fn read_lines() -> Vec<String> {

                lines.push(input.clone());
            }
            Err(error) => panic!("{}", error)
            Err(error) => panic!("{}", error),
        }
    }