diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2013-11-04 01:43:56 -0500 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2013-11-05 20:43:54 +0100 |
commit | dd3b8202d714009897a857d0d0b8b95e2d37118f (patch) | |
tree | 41e8ec6bb22a84454e306492c82e40ea4d488888 /src/psk-args.def | |
parent | 890f82cc888b6990e678ab589ae6ff88cf314a5f (diff) | |
download | gnutls-dd3b8202d714009897a857d0d0b8b95e2d37118f.tar.gz |
argument descriptions should not end in a dot
When the descrip value for an argument ends in a dot, the rendered
documentation places two dots (for example "specify a password file.."
in srptool(1)).
Most of the descriptions are declared properly (without a trailing
dot), but this patch should clean up the rest.
After this commit, any auto-generated documentation that is committed
to git will probably will also need to be refreshed (or removed from
git entirely and generated from the definitions during build, which
might be cleaner).
Diffstat (limited to 'src/psk-args.def')
-rw-r--r-- | src/psk-args.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/psk-args.def b/src/psk-args.def index d19ae2655f..819acdb327 100644 --- a/src/psk-args.def +++ b/src/psk-args.def @@ -30,7 +30,7 @@ flag = { name = passwd; value = p; arg-type = string; - descrip = "specify a password file."; + descrip = "specify a password file"; doc = ""; }; |