s/dervied/derived/

This commit is contained in:
Michael Vines 2020-01-25 23:22:23 -07:00
parent bb6c4efe9b
commit cff1bc6e71
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
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
config Solana command-line tool configuration settings
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-nonce-account Create a nonce account
create-stake-account Create a stake account
@ -618,7 +618,7 @@ ARGS:
#### solana-create-address-with-seed
```text
solana-create-address-with-seed
Generate a dervied account address with a seed
Generate a derived account address with a seed
USAGE:
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::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::with_name("seed")
.index(1)