Skip to content

Commit

Permalink
Merge pull request #28396 from ProvableHQ/help-message
Browse files Browse the repository at this point in the history
Fix help messages for command line options.
  • Loading branch information
d0cd authored Oct 15, 2024
2 parents 75a0277 + 29534d8 commit 3d21dd5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions leo/cli/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,17 +141,17 @@ pub struct BuildOptions {
pub non_recursive: bool,
#[clap(long, help = "Enables offline mode.")]
pub offline: bool,
#[clap(long, help = "Enable spans in AST snapshots.")]
#[clap(long, help = "Enable spans in symbol table snapshots.")]
pub enable_symbol_table_spans: bool,
#[clap(long, help = "Enables dead code elimination in the compiler.")]
#[clap(long, help = "Writes the symbol table after the symbol table pass.")]
pub enable_initial_symbol_table_snapshot: bool,
#[clap(long, help = "Writes symbol table snapshot of the type checked symbol table.")]
pub enable_type_checked_symbol_table_snapshot: bool,
#[clap(long, help = "Writes symbol table snapshot of the unrolled symbol table.")]
pub enable_unrolled_symbol_table_snapshot: bool,
#[clap(long, help = "Enable spans in AST snapshots.")]
pub enable_ast_spans: bool,
#[clap(long, help = "Enable spans in symbol table snapshots.")]
#[clap(long, help = "Enables dead code elimination in the compiler.")]
pub enable_dce: bool,
#[clap(long, help = "Writes all AST snapshots for the different compiler phases.")]
pub enable_all_ast_snapshots: bool,
Expand Down

0 comments on commit 3d21dd5

Please sign in to comment.