Skip to content

Commit

Permalink
chore: change doc comment for quickstart command
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason I committed Oct 30, 2023
1 parent b9ccecf commit 282af8d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/dfx/src/commands/quickstart.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ use rust_decimal::Decimal;
use slog::Logger;
use tokio::runtime::Runtime;

/// Use the `dfx quickstart` command to perform initial one time setup for your identity and/or wallet. This command
/// can be run anytime to repeat the setup process or to be used as an informational command, printing
/// Use the `dfx quickstart` command to perform initial one time setup for your identity and/or wallet.
#[derive(Parser)]
pub struct QuickstartOpts;

// This command can be run anytime to repeat the setup process or to be used as an informational command, printing
/// information about your ICP balance, current ICP to XDR conversion rate, and more.
///
/// If setup tasks remain, this command is equivalent to running `dfx identity set-wallet` (for importing) or
/// `dfx ledger create-canister` followed by `dfx identity deploy-wallet` (for creating), though more steps may
/// be added in future versions.
#[derive(Parser)]
pub struct QuickstartOpts;

pub fn exec(env: &dyn Environment, _: QuickstartOpts) -> DfxResult {
let env = create_agent_environment(env, Some("ic".to_string()))?;
let agent = env.get_agent();
Expand Down

0 comments on commit 282af8d

Please sign in to comment.