s/dervied/derived/

This commit is contained in:
Michael Vines
2020-01-25 23:22:23 -07:00
parent e2570c98ee
commit 41cf1d7d23
2 changed files with 3 additions and 3 deletions

View File

@ -212,7 +212,7 @@ SUBCOMMANDS:
cluster-version Get the version of the cluster entrypoint cluster-version Get the version of the cluster entrypoint
config Solana command-line tool configuration settings config Solana command-line tool configuration settings
confirm Confirm transaction by signature confirm Confirm transaction by signature
create-address-with-seed Generate a dervied account address with a seed create-address-with-seed Generate a derived account address with a seed
create-archiver-storage-account Create an archiver storage account create-archiver-storage-account Create an archiver storage account
create-nonce-account Create a nonce account create-nonce-account Create a nonce account
create-stake-account Create a stake account create-stake-account Create a stake account
@ -618,7 +618,7 @@ ARGS:
#### solana-create-address-with-seed #### solana-create-address-with-seed
```text ```text
solana-create-address-with-seed solana-create-address-with-seed
Generate a dervied account address with a seed Generate a derived account address with a seed
USAGE: USAGE:
solana create-address-with-seed [FLAGS] [OPTIONS] <SEED_STRING> <PROGRAM_ID> solana create-address-with-seed [FLAGS] [OPTIONS] <SEED_STRING> <PROGRAM_ID>

View File

@ -1871,7 +1871,7 @@ pub fn app<'ab, 'v>(name: &str, about: &'ab str, version: &'v str) -> App<'ab, '
) )
.subcommand( .subcommand(
SubCommand::with_name("create-address-with-seed") SubCommand::with_name("create-address-with-seed")
.about("Generate a dervied account address with a seed") .about("Generate a derived account address with a seed")
.arg( .arg(
Arg::with_name("seed") Arg::with_name("seed")
.index(1) .index(1)