Skip to content

Commit 7eff681

Browse files
committed
Update help line
1 parent 5560d79 commit 7eff681

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/dis.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// `dis.dis` format.
55
///
66
/// example usage:
7-
/// $ cargo run --release --example dis demo.py
7+
/// $ cargo run --release --example dis demo*.py
88
99
#[macro_use]
1010
extern crate clap;
@@ -21,10 +21,10 @@ use std::path::Path;
2121

2222
fn main() {
2323
env_logger::init();
24-
let app = App::new("parse_folders")
24+
let app = App::new("dis")
2525
.version(crate_version!())
2626
.author(crate_authors!())
27-
.about("Walks over all .py files in a folder, and parses them.")
27+
.about("Compiles and disassembles python script files for viewing their bytecode.")
2828
.arg(
2929
Arg::with_name("scripts")
3030
.help("Scripts to scan")

0 commit comments

Comments
 (0)