diff options
author | kn <> | 2022-12-22 19:53:23 +0000 |
---|---|---|
committer | kn <> | 2022-12-22 19:53:23 +0000 |
commit | 3608d51563efc264f9fb8d2a5a5d21073be1e163 (patch) | |
tree | 96643289c6432a2a6de33c2a52092cc67efded66 /src | |
parent | 30979b182281b6719cd5c9e188c52d6ef43d9db9 (diff) | |
download | openbsd-3608d51563efc264f9fb8d2a5a5d21073be1e163.tar.gz openbsd-3608d51563efc264f9fb8d2a5a5d21073be1e163.tar.bz2 openbsd-3608d51563efc264f9fb8d2a5a5d21073be1e163.zip |
Denote multiple arguments with 'arg ...' not 'args'
A few programs used the plural in their synopsis which doesn't read as
clear as the obvious triple-dot notation.
mdoc(7) .Ar defaults to "file ..." if no arguments are given and consistent
use of 'arg ...' matches that behaviour.
Cleanup a few markups of the same argument so the text keeps reading
naturally; omit unhelpful parts like 'if optional arguments are given,
they are passed along' for tools like time(1) and timeout(1) that obviously
execute commands with whatever arguments where given -- just like doas(1)
which doesn't mention arguments in its DESCRIPTION in the first place.
For expr(1) the difference between 'expressions' and 'expression ...' is
crucial, as arguments must be passed as individual words.
Feedback millert jmc schwarze deraadt
OK jmc
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.bin/openssl/openssl.1 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr.bin/openssl/openssl.1 b/src/usr.bin/openssl/openssl.1 index 419fbe4d10..b28fc0900d 100644 --- a/src/usr.bin/openssl/openssl.1 +++ b/src/usr.bin/openssl/openssl.1 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: openssl.1,v 1.139 2022/07/19 16:08:09 tb Exp $ | 1 | .\" $OpenBSD: openssl.1,v 1.140 2022/12/22 19:53:23 kn Exp $ |
2 | .\" ==================================================================== | 2 | .\" ==================================================================== |
3 | .\" Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. | 3 | .\" Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. |
4 | .\" | 4 | .\" |
@@ -110,7 +110,7 @@ | |||
110 | .\" copied and put under another distribution licence | 110 | .\" copied and put under another distribution licence |
111 | .\" [including the GNU Public Licence.] | 111 | .\" [including the GNU Public Licence.] |
112 | .\" | 112 | .\" |
113 | .Dd $Mdocdate: July 19 2022 $ | 113 | .Dd $Mdocdate: December 22 2022 $ |
114 | .Dt OPENSSL 1 | 114 | .Dt OPENSSL 1 |
115 | .Os | 115 | .Os |
116 | .Sh NAME | 116 | .Sh NAME |
@@ -119,8 +119,8 @@ | |||
119 | .Sh SYNOPSIS | 119 | .Sh SYNOPSIS |
120 | .Nm | 120 | .Nm |
121 | .Ar command | 121 | .Ar command |
122 | .Op Ar command_opts | 122 | .Op Ar command_opt ... |
123 | .Op Ar command_args | 123 | .Op Ar command_arg ... |
124 | .Pp | 124 | .Pp |
125 | .Nm | 125 | .Nm |
126 | .Cm list-standard-commands | | 126 | .Cm list-standard-commands | |