summaryrefslogtreecommitdiff
path: root/src/srptool-args.def
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2013-11-04 01:43:56 -0500
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2013-11-05 20:43:54 +0100
commitdd3b8202d714009897a857d0d0b8b95e2d37118f (patch)
tree41e8ec6bb22a84454e306492c82e40ea4d488888 /src/srptool-args.def
parent890f82cc888b6990e678ab589ae6ff88cf314a5f (diff)
downloadgnutls-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/srptool-args.def')
-rw-r--r--src/srptool-args.def6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/srptool-args.def b/src/srptool-args.def
index cb78e3b0a6..c6fdd714d9 100644
--- a/src/srptool-args.def
+++ b/src/srptool-args.def
@@ -20,7 +20,7 @@ flag = {
value = i;
arg-type = number;
arg-default = 1;
- descrip = "specify the index of the group parameters in tpasswd.conf to use.";
+ descrip = "specify the index of the group parameters in tpasswd.conf to use";
doc = "";
};
@@ -36,7 +36,7 @@ flag = {
name = passwd;
value = p;
arg-type = string;
- descrip = "specify a password file.";
+ descrip = "specify a password file";
doc = "";
};
@@ -44,7 +44,7 @@ flag = {
name = salt;
value = s;
arg-type = number;
- descrip = "specify salt size.";
+ descrip = "specify salt size";
doc = "";
};