diff options
author | kn <kn@cvs.openbsd.org> | 2021-07-04 15:58:52 +0000 |
---|---|---|
committer | kn <kn@cvs.openbsd.org> | 2021-07-04 15:58:52 +0000 |
commit | 3ac3e951ada3d8fb9fef19fd0a711f39d7bcc0d8 (patch) | |
tree | d7ea0dd8c1b9f2489868244e16641a96a4c084c7 /share/man/man7 | |
parent | 53065b5c7d4eef4968faf2ec8b05e4cffd6aff25 (diff) |
.Fl marks up options not arguments
POSIX says `-v' is an option, not an argument; options may take arguments,
as documented in getopt(3).
Programs may take arguments as well, e.g. "prog -v -- arg ...", but these
are usually marked up with `.Cm'.
Change "The arguments are as follows:" to "The options are as follows:" in
`.Fl's DESCRIPTION example to match what most of our base manuals say.
OK schwarze jmc
Diffstat (limited to 'share/man/man7')
-rw-r--r-- | share/man/man7/mdoc.7 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man7/mdoc.7 b/share/man/man7/mdoc.7 index 8e123bee00a..fcf8271b3f7 100644 --- a/share/man/man7/mdoc.7 +++ b/share/man/man7/mdoc.7 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mdoc.7,v 1.176 2021/05/12 10:59:43 jmc Exp $ +.\" $OpenBSD: mdoc.7,v 1.177 2021/07/04 15:58:51 kn Exp $ .\" .\" Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> .\" Copyright (c) 2010, 2011, 2013-2020 Ingo Schwarze <schwarze@openbsd.org> @@ -15,7 +15,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: May 12 2021 $ +.Dd $Mdocdate: July 4 2021 $ .Dt MDOC 7 .Os .Sh NAME @@ -297,7 +297,7 @@ utility does this, that, and the other. It usually follows with a breakdown of the options (if documenting a command), such as: .Bd -literal -offset indent -The arguments are as follows: +The options are as follows: \&.Bl \-tag \-width Ds \&.It Fl v Print verbose information. |