Skip to content

Commit

Permalink
Fix subcommand help messages
Browse files Browse the repository at this point in the history
  • Loading branch information
rapiz1 committed Jan 26, 2022
1 parent edcf267 commit 5dffe89
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions leo/commands/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,13 @@ fn parse_excluded_names(src: &str) -> Box<str> {
Box::from(src)
}

// Compiler Options wrapper for Build command. Also used by other commands which
// require Build command output as their input.
#[cfg_attr(
doc,
doc = r#"
/// Compiler Options wrapper for Build command. Also used by other commands which
/// require Build command output as their input.
"#
)]
#[derive(StructOpt, Clone, Debug)]
pub struct BuildOptions {
#[structopt(long, help = "Disable constant folding compiler optimization.")]
Expand Down

0 comments on commit 5dffe89

Please sign in to comment.