Skip to content

Commit

Permalink
Update parent flag in print usage option
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Hsiao authored and Nathan Hsiao committed Aug 28, 2024
1 parent 2d6cfcb commit d7307bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/cd/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use path::Path;
pub fn main(args: Vec<String>) -> isize {
let mut opts = Options::new();
opts.optflag("h", "help", "print this help menu");
opts.optflag("p", "parent", "change parent directory");
opts.optflag("p", "parent", "use '..' to change to parent directory");

let matches = match opts.parse(args) {
Ok(m) => m,
Expand Down

0 comments on commit d7307bf

Please sign in to comment.