Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: change doc comment for quickstart command #3427

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These should probably all be // or ///, but not a mix

/// 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
Loading