diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2015-03-13 19:58:42 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2015-03-13 19:58:42 +0000 |
commit | 66b5281887fd0b549fb1c749e60e79cd3ac32986 (patch) | |
tree | 789e9e9e2743b415197e15ba6a661391d1727edd /lib/libpthread | |
parent | 638018e1fd7752caa1e08dd49033f0d1411fee11 (diff) |
remove the first comma from constructs like ", and," and ", or,": you can use
"and" and "or" to join sentence clauses, and you can use commas, but both hinders
reading;
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/man/pthread_cleanup_pop.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpthread/man/pthread_cleanup_pop.3 b/lib/libpthread/man/pthread_cleanup_pop.3 index 5a67cd937c3..815a58d9f68 100644 --- a/lib/libpthread/man/pthread_cleanup_pop.3 +++ b/lib/libpthread/man/pthread_cleanup_pop.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pthread_cleanup_pop.3,v 1.9 2013/06/05 03:44:50 tedu Exp $ +.\" $OpenBSD: pthread_cleanup_pop.3,v 1.10 2015/03/13 19:58:41 jmc Exp $ .\" .\" Copyright (c) 1997 Brian Cully <shmit@kublai.com> .\" All rights reserved. @@ -29,7 +29,7 @@ .\" .\" $FreeBSD: pthread_cleanup_pop.3,v 1.4 1999/08/28 00:03:02 peter Exp $ .\" -.Dd $Mdocdate: June 5 2013 $ +.Dd $Mdocdate: March 13 2015 $ .Dt PTHREAD_CLEANUP_POP 3 .Os .Sh NAME @@ -43,7 +43,7 @@ The .Fn pthread_cleanup_pop function pops the top cleanup routine off of the current thread's cleanup -routine stack, and, if +routine stack and, if .Fa execute is non-zero, it will execute the function. If there is no cleanup routine then |