change gitignore, expect
This commit is contained in:
+2
-2
@@ -9,8 +9,8 @@ fn main() {
|
||||
let matches = App::from_yaml(yaml).get_matches();
|
||||
let params = Params::new_from_matches(matches);
|
||||
|
||||
let file = File::open(¶ms.source()).unwrap();
|
||||
let file2 = File::open(¶ms.compared()).unwrap();
|
||||
let file = File::open(¶ms.source()).expect("Can't find source file");
|
||||
let file2 = File::open(¶ms.compared()).expect("Cant't find compared file");
|
||||
|
||||
let reader = BufReader::new(file);
|
||||
let reader2 = BufReader::new(file2);
|
||||
|
||||
Reference in New Issue
Block a user