summaryrefslogtreecommitdiff
path: root/lib/libpthread/pthread_cond_init.3
diff options
context:
space:
mode:
authorpeter <peter@NetBSD.org>2005-06-17 18:07:06 +0000
committerpeter <peter@NetBSD.org>2005-06-17 18:07:06 +0000
commit568accb2c0b5fcaf99dea08848de2c46813efe2f (patch)
tree0131edf8b2c75533e50ad2a1287d3c753b17a0db /lib/libpthread/pthread_cond_init.3
parent97c5e2ee7265d65f4e3222d30f580c61ed7f8665 (diff)
Fix various spelling errors.
From Igor Sobrado in PR/29997.
Diffstat (limited to 'lib/libpthread/pthread_cond_init.3')
-rw-r--r--lib/libpthread/pthread_cond_init.34
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/pthread_cond_init.3 b/lib/libpthread/pthread_cond_init.3
index ac389c58c01..962e213216a 100644
--- a/lib/libpthread/pthread_cond_init.3
+++ b/lib/libpthread/pthread_cond_init.3
@@ -1,4 +1,4 @@
-.\" $NetBSD: pthread_cond_init.3,v 1.5 2005/03/21 17:55:07 kleink Exp $
+.\" $NetBSD: pthread_cond_init.3,v 1.6 2005/06/17 18:07:06 peter Exp $
.\"
.\" Copyright (c) 2002 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -77,7 +77,7 @@ is NULL the default attributes are used.
.Pp
Condition variables are intended to be used to communicate changes in
the state of data shared between threads. Condition variables are
-always associated with a mutex to provide syncronized access to the
+always associated with a mutex to provide synchronized access to the
shared data. A single predicate should always be associated with a
condition variable. The predicate should identify a state of the
shared data that must be true before the thread proceeds.