prettify code

This commit is contained in:
Wuelle
2021-12-30 21:59:29 +01:00
parent 5e563cddf8
commit 9a010ca0c4
17 changed files with 1312 additions and 1060 deletions

View File

@@ -1,6 +1,6 @@
//! wave-inter.rs
//! (c) 2021 Jamie Hardt. All rights reserved.
//!
//!
//! This program demonstrates combining several wave files into a single
//! polyphonic wave file.
@@ -10,7 +10,7 @@ extern crate bwavfile;
#[macro_use]
extern crate clap;
use clap::{Arg, App};
use clap::{App, Arg};
fn main() -> io::Result<()> {
let matches = App::new("wave-inter")
@@ -32,4 +32,4 @@ fn main() -> io::Result<()> {
println!("Command line opts: {:?}", matches);
todo!("Finish implementation");
}
}