Cargo fmt

This commit is contained in:
Ryan Geary 2020-03-17 13:44:14 -04:00
parent 41e060680e
commit a90a5cb742
2 changed files with 3 additions and 2 deletions

View file

@ -29,4 +29,3 @@ pub struct Opt {
#[structopt(required = true, min_values = 1, parse(try_from_str = Config::parse_choice))]
pub choice: Vec<Choice>,
}

View file

@ -6,7 +6,9 @@ pub struct BufReader<R> {
impl<R: Read> BufReader<R> {
pub fn new(f: R) -> Self {
Self { reader: io::BufReader::new(f) }
Self {
reader: io::BufReader::new(f),
}
}
pub fn read_line<'buf>(