diff options
author | Yuri Chornoivan <[email protected]> | 2017-02-20 21:19:50 +0000 |
---|---|---|
committer | Daniel Kahn Gillmor <[email protected]> | 2017-02-21 18:11:46 +0000 |
commit | 24cf0606b43038c7ce5e9c6ccb921895619c04f0 (patch) | |
tree | 4888dfeb4ed52052e71158b948499b12b4b04ec9 /scd/command.c | |
parent | dirmngr: Add special treatment for the standard hkps pool to ntbtls. (diff) | |
download | gnupg-24cf0606b43038c7ce5e9c6ccb921895619c04f0.tar.gz gnupg-24cf0606b43038c7ce5e9c6ccb921895619c04f0.zip |
Clean up word replication.
--
This fixes extra word repetitions (like "the the" or "is is") in the
code and docs.
Signed-off-by: Daniel Kahn Gillmor <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | scd/command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scd/command.c b/scd/command.c index 5b7ddc867..b1d5539cb 100644 --- a/scd/command.c +++ b/scd/command.c @@ -900,7 +900,7 @@ cmd_getattr (assuan_context_t ctx, char *line) static const char hlp_setattr[] = "SETATTR <name> <value> \n" "\n" - "This command is used to store data on a a smartcard. The allowed\n" + "This command is used to store data on a smartcard. The allowed\n" "names and values are depend on the currently selected smartcard\n" "application. NAME and VALUE must be percent and '+' escaped.\n" "\n" @@ -954,7 +954,7 @@ static const char hlp_writecert[] = "application. The actual certifciate is requested using the inquiry\n" "\"CERTDATA\" and needs to be provided in its raw (e.g. DER) form.\n" "\n" - "In almost all cases a a PIN will be requested. See the related\n" + "In almost all cases a PIN will be requested. See the related\n" "writecert function of the actually used application (app-*.c) for\n" "details."; static gpg_error_t @@ -1007,7 +1007,7 @@ cmd_writecert (assuan_context_t ctx, char *line) static const char hlp_writekey[] = "WRITEKEY [--force] <keyid> \n" "\n" - "This command is used to store a secret key on a a smartcard. The\n" + "This command is used to store a secret key on a smartcard. The\n" "allowed keyids depend on the currently selected smartcard\n" "application. The actual keydata is requested using the inquiry\n" "\"KEYDATA\" and need to be provided without any protection. With\n" |