Skip to content

Commit

Permalink
make aliases visible in generated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jul 2, 2020
1 parent e32778b commit 531fbf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ pub struct Args {
#[derive(Debug, StructOpt)]
pub enum Command {
/// Launch the terminal user interface
#[structopt(name = "interactive", alias = "i")]
#[structopt(name = "interactive", visible_alias = "i")]
Interactive {
/// One or more input files or directories. If unset, we will use all entries in the current working directory.
#[structopt(parse(from_os_str))]
input: Vec<PathBuf>,
},
/// Aggregrate the consumed space of one or more directories or files
#[structopt(name = "aggregate", alias = "a")]
#[structopt(name = "aggregate", visible_alias = "a")]
Aggregate {
/// If set, print additional statistics about the file traversal to stderr
#[structopt(long = "stats")]
Expand Down

0 comments on commit 531fbf1

Please sign in to comment.