1
0
mirror of https://github.com/sharkdp/bat synced 2026-08-08 19:41:45 +00:00

Use unwrap

This commit is contained in:
sharkdp
2020-04-22 21:46:01 +02:00
committed by David Peter
parent 702cb198da
commit b76f5e72d4
3 changed files with 3 additions and 6 deletions
+1 -1
View File
@@ -13,5 +13,5 @@ fn main() {
.wrapping_mode(WrappingMode::Character)
.input_file(file!())
.print()
.expect("no errors");
.unwrap();
}