Skip to content

Commit

Permalink
chore: update message for option default value
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Aug 4, 2023
1 parent d0f3336 commit 0ac5853
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/nargo_cli/src/cli/init_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use std::path::PathBuf;
/// Create a Noir project in the current directory.
#[derive(Debug, Clone, Args)]
pub(crate) struct InitCommand {
/// Name of the package (Defaults to current directory name)
/// Name of the package [default = current directory name]
#[clap(long)]
name: Option<String>,
}
Expand Down
2 changes: 1 addition & 1 deletion crates/nargo_cli/src/cli/new_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub(crate) struct NewCommand {
/// The path to save the new project
path: PathBuf,

/// Name of the package (Defaults to package directory name)
/// Name of the package [default = package directory name]
#[clap(long)]
name: Option<String>,
}
Expand Down

0 comments on commit 0ac5853

Please sign in to comment.