From a04c5c7e920043ad93f765318cad923e2bb5343a Mon Sep 17 00:00:00 2001 From: Tommy Verrall Date: Wed, 27 Mar 2024 11:25:57 +0100 Subject: [PATCH] typos --- nym-wallet/nym-wallet-recovery-cli/WALLET_RECOVERY.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nym-wallet/nym-wallet-recovery-cli/WALLET_RECOVERY.md b/nym-wallet/nym-wallet-recovery-cli/WALLET_RECOVERY.md index 2798d955c8..0fa2a6bd0e 100644 --- a/nym-wallet/nym-wallet-recovery-cli/WALLET_RECOVERY.md +++ b/nym-wallet/nym-wallet-recovery-cli/WALLET_RECOVERY.md @@ -13,7 +13,7 @@ This guide provides instructions on how to use the Wallet CLI recovery tool to r The tool requires specific command-line arguments to specify the password(s) and the file path to your wallet file. The basic structure of the command is as follows: -```plaintext +``` nym-recovery-cli --password --file [OPTIONS] ``` @@ -28,13 +28,13 @@ nym-recovery-cli --password --file [O Example: -```bash +``` ./nym-recovery-cli --password "mySecurePassword123" --file "/path/to/mywallet.json" ``` To try multiple passwords: -```bash +``` ./nym-recovery-cli --password "myFirstPassword" --password "mySecondPassword" --file "/path/to/mywallet.json" ```