Fix a few typos in option help strings (#3401)

## Proposed Changes

Fixes a typo I noticed while looking at options.
This commit is contained in:
Justin Traglia 2022-08-02 00:58:24 +00:00
parent 3b056232d8
commit 807bc8b0b3

View File

@ -441,7 +441,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
.alias("jwt-id") .alias("jwt-id")
.help("Used by the beacon node to communicate a unique identifier to execution nodes \ .help("Used by the beacon node to communicate a unique identifier to execution nodes \
during JWT authentication. It corresponds to the 'id' field in the JWT claims object.\ during JWT authentication. It corresponds to the 'id' field in the JWT claims object.\
Set to empty by deafult") Set to empty by default")
.takes_value(true) .takes_value(true)
) )
.arg( .arg(
@ -451,7 +451,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
.alias("jwt-version") .alias("jwt-version")
.help("Used by the beacon node to communicate a client version to execution nodes \ .help("Used by the beacon node to communicate a client version to execution nodes \
during JWT authentication. It corresponds to the 'clv' field in the JWT claims object.\ during JWT authentication. It corresponds to the 'clv' field in the JWT claims object.\
Set to empty by deafult") Set to empty by default")
.takes_value(true) .takes_value(true)
) )
.arg( .arg(