From cbc7b3b0b727511b71884529a967d2b7060b8706 Mon Sep 17 00:00:00 2001 From: Greg Fitzgerald Date: Tue, 21 Apr 2020 17:09:34 -0600 Subject: [PATCH] Cleanup CLI help message (#9632) automerge --- cli/src/lib.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cli/src/lib.rs b/cli/src/lib.rs index c67f8c48fd..9b8a94eff1 100644 --- a/cli/src/lib.rs +++ b/cli/src/lib.rs @@ -1,11 +1,11 @@ macro_rules! ACCOUNT_STRING { () => { - r#"Can be: - * a bs58 pubkey string - * path to keypair file - * '-' to take json-encoded keypair string from stdin - * 'ASK' to ask for a passphrase - * path to hardware wallet (usb://..)"# + r#", one of: + * a base58-encoded public key + * a path to a keypair file + * a hyphen; signals a JSON-encoded keypair on stdin + * the 'ASK' keyword; to recover a keypair via its seed phrase + * a hardware wallet keypair URL (i.e. usb://ledger)"# }; }