1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-01 10:52:24 +01:00

rename run => print

This commit is contained in:
sharkdp
2020-04-22 20:33:19 +02:00
committed by David Peter
parent eee35e54e9
commit f034be71e7
4 changed files with 9 additions and 8 deletions

View File

@@ -12,6 +12,6 @@ fn main() {
StyleComponent::Numbers,
]))
.input_files(std::env::args_os().skip(1))
.run()
.print()
.expect("no errors");
}

View File

@@ -7,6 +7,6 @@ fn main() {
PrettyPrinter::new()
.input_file(path_to_this_file)
.run()
.print()
.expect("no errors");
}