agent/raft: fix typo in help strings (#9114)

This commit is contained in:
Jason O'Donnell 2020-06-02 10:17:08 -04:00 committed by GitHub
parent 34fab8ae09
commit ab0bbc595b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -56,21 +56,21 @@ func (c *OperatorRaftJoinCommand) Flags() *FlagSets {
Name: "leader-ca-cert",
Target: &c.flagLeaderCACert,
Completion: complete.PredictNothing,
Usage: "CA cert to communicate with Raft leader.",
Usage: "CA cert to use when verifying the Raft leader certificate.",
})
f.StringVar(&StringVar{
Name: "leader-client-cert",
Target: &c.flagLeaderClientCert,
Completion: complete.PredictNothing,
Usage: "Client cert to to authenticate to Raft leader.",
Usage: "Client cert to use when authenticating with the Raft leader.",
})
f.StringVar(&StringVar{
Name: "leader-client-key",
Target: &c.flagLeaderClientKey,
Completion: complete.PredictNothing,
Usage: "Client key to to authenticate to Raft leader.",
Usage: "Client key to use when authenticating with the Raft leader.",
})
f.BoolVar(&BoolVar{