diff options
author | Jared Yanovich <jaredy@cvs.openbsd.org> | 2005-08-10 01:06:14 +0000 |
---|---|---|
committer | Jared Yanovich <jaredy@cvs.openbsd.org> | 2005-08-10 01:06:14 +0000 |
commit | c750640f728f9dcd86d8164f81f03726ad1d0715 (patch) | |
tree | b42b603c4a60c36f0532932ff316a5dda838005e /lib | |
parent | b6645cb4269953c8497bbfa1bb3aade7f75213ef (diff) |
- punctuation fixes
- refer to formal parameters consistently.
ok jmc
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/sys/access.2 | 4 | ||||
-rw-r--r-- | lib/libc/sys/bind.2 | 6 | ||||
-rw-r--r-- | lib/libc/sys/brk.2 | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/lib/libc/sys/access.2 b/lib/libc/sys/access.2 index 71b4a39da4b..0c891e8f8e1 100644 --- a/lib/libc/sys/access.2 +++ b/lib/libc/sys/access.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: access.2,v 1.10 2003/06/02 20:18:38 millert Exp $ +.\" $OpenBSD: access.2,v 1.11 2005/08/10 01:06:13 jaredy Exp $ .\" $NetBSD: access.2,v 1.7 1995/02/27 12:31:44 cgd Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -55,7 +55,7 @@ of the access permissions to be checked .Pf ( Dv R_OK for read permission, .Dv W_OK -for write permission and +for write permission, and .Dv X_OK for execute/search permission) or the existence test, .Dv F_OK . diff --git a/lib/libc/sys/bind.2 b/lib/libc/sys/bind.2 index 1ebb58b38e1..659d237ce0c 100644 --- a/lib/libc/sys/bind.2 +++ b/lib/libc/sys/bind.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: bind.2,v 1.13 2003/06/02 20:18:38 millert Exp $ +.\" $OpenBSD: bind.2,v 1.14 2005/08/10 01:06:13 jaredy Exp $ .\" $NetBSD: bind.2,v 1.8 1995/10/12 15:40:46 jtc Exp $ .\" .\" Copyright (c) 1983, 1993 @@ -74,10 +74,10 @@ The call will fail if: .Bl -tag -width Er .It Bq Er EBADF -.Fa S +.Fa s is not a valid descriptor. .It Bq Er ENOTSOCK -.Fa S +.Fa s is not a socket. .It Bq Er EADDRNOTAVAIL The specified address is not available from the local machine. diff --git a/lib/libc/sys/brk.2 b/lib/libc/sys/brk.2 index 38858c687ff..f96157752bb 100644 --- a/lib/libc/sys/brk.2 +++ b/lib/libc/sys/brk.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: brk.2,v 1.14 2003/06/02 20:18:38 millert Exp $ +.\" $OpenBSD: brk.2,v 1.15 2005/08/10 01:06:13 jaredy Exp $ .\" $NetBSD: brk.2,v 1.7 1995/02/27 12:31:57 cgd Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -98,7 +98,7 @@ beyond the value returned from a call to .Xr getrlimit 2 , e.g., -.Dq etext + rlp\(->rlim_max . +.Dq etext + rlp\(->rlim_max (see .Xr end 3 for the definition of |