diff options
author | bde <bde@FreeBSD.org> | 2001-02-06 01:42:56 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-02-06 01:42:56 +0000 |
commit | 03e580293fc25aae0dfc82fec75c69e5a3933d29 (patch) | |
tree | c9606e488b3ddba5a69e1b55d8f31a403a700ec4 | |
parent | 80ed1c3008fcb627a7afa930d6a213b16ea8b114 (diff) | |
download | FreeBSD-src-03e580293fc25aae0dfc82fec75c69e5a3933d29.zip FreeBSD-src-03e580293fc25aae0dfc82fec75c69e5a3933d29.tar.gz |
Don't set a bad example by putting the function type in ".Fo".
-rw-r--r-- | share/man/man7/mdoc.samples.7 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/share/man/man7/mdoc.samples.7 b/share/man/man7/mdoc.samples.7 index ef8ef5e..f47ba55 100644 --- a/share/man/man7/mdoc.samples.7 +++ b/share/man/man7/mdoc.samples.7 @@ -1151,7 +1151,8 @@ may be used with (function argument) to get around the limitation. For example: .Bd -literal -offset indent -\&.Fo "int res_mkquery" +\&.Ft int +\&.Fo res_mkquery \&.Fa "int op" \&.Fa "char *dname" \&.Fa "int class" @@ -1166,7 +1167,8 @@ to get around the limitation. For example: .Pp Produces: .Bd -filled -offset indent -.Fo "int res_mkquery" +.Ft int +.Fo res_mkquery .Fa "int op" .Fa "char *dname" .Fa "int class" |