diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 1999-03-11 01:35:08 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 1999-03-11 01:35:08 +0000 |
commit | b3ede3ba86748e4de8ce13bd3a82cd3fc08d205a (patch) | |
tree | cb73e5097f77ad8256469528fecb4358412745ba /lib | |
parent | 181fc17fd16baad70e16a3715d9aff068f522021 (diff) |
fix more comma splices that involve misuse of conjunctive adverbs
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/db/man/hash.3 | 4 | ||||
-rw-r--r-- | lib/libc/stdlib/rand48.3 | 4 | ||||
-rw-r--r-- | lib/libc/sys/select.2 | 6 | ||||
-rw-r--r-- | lib/libc/yp/ypclnt.3 | 4 | ||||
-rw-r--r-- | lib/libc_r/man/pthread_setspecific.3 | 2 | ||||
-rw-r--r-- | lib/libcompat/regexp/regexp.3 | 2 | ||||
-rw-r--r-- | lib/libpthread/man/pthread_setspecific.3 | 2 |
7 files changed, 12 insertions, 12 deletions
diff --git a/lib/libc/db/man/hash.3 b/lib/libc/db/man/hash.3 index e2e9d52be4f..f7fc202eaf7 100644 --- a/lib/libc/db/man/hash.3 +++ b/lib/libc/db/man/hash.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: hash.3,v 1.4 1997/07/28 15:11:59 flipk Exp $ +.\" $OpenBSD: hash.3,v 1.5 1999/03/11 01:35:01 pjanzen Exp $ .\" $NetBSD: hash.3,v 1.6 1996/05/03 21:26:50 cgd Exp $ .\" .\" Copyright (c) 1997, Phillip F Knaack. All rights reserved. @@ -142,7 +142,7 @@ Backward compatible interfaces to the routines described in .Xr dbm 3 , and .Xr ndbm 3 -are provided, however these interfaces are not compatible with +are provided, although these interfaces are not compatible with previous file formats. .Sh ERRORS The diff --git a/lib/libc/stdlib/rand48.3 b/lib/libc/stdlib/rand48.3 index d5236a47799..efd64773646 100644 --- a/lib/libc/stdlib/rand48.3 +++ b/lib/libc/stdlib/rand48.3 @@ -9,7 +9,7 @@ .\" of any kind. I shall in no event be liable for anything that happens .\" to anyone/anything when using this software. .\" -.\" $OpenBSD: rand48.3,v 1.3 1998/07/05 19:54:23 millert Exp $ +.\" $OpenBSD: rand48.3,v 1.4 1999/03/11 01:35:01 pjanzen Exp $ .\" .Dd October 8, 1993 .Dt RAND48 3 @@ -123,7 +123,7 @@ the constant multiplicand and addend of the algorithm are reset to the default values given above. .Fn seed48 returns a pointer to an array of 3 shorts which contains the old seed. -This array is statically allocated, thus its contents are lost after +This array is statically allocated, so its contents are lost after each new call to .Fn seed48 . .Pp diff --git a/lib/libc/sys/select.2 b/lib/libc/sys/select.2 index dd920cbb7b6..8626c060dfc 100644 --- a/lib/libc/sys/select.2 +++ b/lib/libc/sys/select.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: select.2,v 1.10 1999/03/02 10:32:31 deraadt Exp $ +.\" $OpenBSD: select.2,v 1.11 1999/03/11 01:35:01 pjanzen Exp $ .\" $NetBSD: select.2,v 1.5 1995/06/27 22:32:28 cgd Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 @@ -113,8 +113,8 @@ argument should be non-nil, pointing to a zero-valued timeval structure. .Fa timeout is not changed by .Fn select , -and may be reused on subsequent calls, however it is good style to re-initialize -it before each invocation of +and may be reused on subsequent calls; however, it is good style to +re-initialize it before each invocation of .Fn select . .Pp Any of diff --git a/lib/libc/yp/ypclnt.3 b/lib/libc/yp/ypclnt.3 index 466809d8fec..2f8391248e7 100644 --- a/lib/libc/yp/ypclnt.3 +++ b/lib/libc/yp/ypclnt.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ypclnt.3,v 1.7 1999/02/27 21:57:07 deraadt Exp $ +.\" $OpenBSD: ypclnt.3,v 1.8 1999/03/11 01:35:02 pjanzen Exp $ .\" .\" Copyright (c) 1996 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -262,7 +262,7 @@ and .Fa inval is private to .Fn yp_all , -and is overwritten with each subsequent key-value pair, thus the +and is overwritten with each subsequent key-value pair; therefore, the .Pa foreach function should do something useful with the contents of that memory during each iteration. If the key-value pairs are not terminated with either diff --git a/lib/libc_r/man/pthread_setspecific.3 b/lib/libc_r/man/pthread_setspecific.3 index f2a315c4561..4cea6f7edef 100644 --- a/lib/libc_r/man/pthread_setspecific.3 +++ b/lib/libc_r/man/pthread_setspecific.3 @@ -60,7 +60,7 @@ has been deleted with is undefined. .Pp .Fn pthread_setspecific -may be called from a thread-specific data destructor function, however this +may be called from a thread-specific data destructor function; however, this may result in lost storage or infinite loops. .Sh RETURN VALUES If successful, the diff --git a/lib/libcompat/regexp/regexp.3 b/lib/libcompat/regexp/regexp.3 index d57716e2230..c9089e43a9d 100644 --- a/lib/libcompat/regexp/regexp.3 +++ b/lib/libcompat/regexp/regexp.3 @@ -267,7 +267,7 @@ Note that if is tried against `xabyabbbz', it will match `ab' just after `x', due to the begins-earliest rule. (In effect, the decision on where to start the match is the first choice -to be made, hence subsequent choices must respect it even if this leads them +to be made; hence subsequent choices must respect it even if this leads them to less-preferred alternatives.) .Sh RETURN VALUES The diff --git a/lib/libpthread/man/pthread_setspecific.3 b/lib/libpthread/man/pthread_setspecific.3 index f2a315c4561..4cea6f7edef 100644 --- a/lib/libpthread/man/pthread_setspecific.3 +++ b/lib/libpthread/man/pthread_setspecific.3 @@ -60,7 +60,7 @@ has been deleted with is undefined. .Pp .Fn pthread_setspecific -may be called from a thread-specific data destructor function, however this +may be called from a thread-specific data destructor function; however, this may result in lost storage or infinite loops. .Sh RETURN VALUES If successful, the |