diff options
author | Jan Klemkow <jan@cvs.openbsd.org> | 2021-11-21 23:44:56 +0000 |
---|---|---|
committer | Jan Klemkow <jan@cvs.openbsd.org> | 2021-11-21 23:44:56 +0000 |
commit | b16292b9249241ffbf641e7a8265a6bedf336bce (patch) | |
tree | 92974d3b4a0d016c186f4433ee8410976299d701 /lib/libc/sys/read.2 | |
parent | cd91885250df601d7061b7ca4f8e819b0abf5032 (diff) |
improve legibility of structs in several manpages
General uses tabs for general indentation and 4 spaces
on tight spots. Also uses extra space to align pointers
and non-pointers as we do this on certain places in our
source.
with improvements from schwarze@
OK schwarze@
Diffstat (limited to 'lib/libc/sys/read.2')
-rw-r--r-- | lib/libc/sys/read.2 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/sys/read.2 b/lib/libc/sys/read.2 index eac151ff92a..c60f84abce3 100644 --- a/lib/libc/sys/read.2 +++ b/lib/libc/sys/read.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: read.2,v 1.37 2020/02/11 13:19:17 schwarze Exp $ +.\" $OpenBSD: read.2,v 1.38 2021/11/21 23:44:55 jan Exp $ .\" $NetBSD: read.2,v 1.6 1995/02/27 12:35:47 cgd Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)read.2 8.4 (Berkeley) 2/26/94 .\" -.Dd $Mdocdate: February 11 2020 $ +.Dd $Mdocdate: November 21 2021 $ .Dt READ 2 .Os .Sh NAME @@ -83,8 +83,8 @@ the structure is defined as: .Bd -literal -offset indent struct iovec { - void *iov_base; - size_t iov_len; + void *iov_base; + size_t iov_len; }; .Ed .Pp |