summaryrefslogtreecommitdiff
path: root/lib/libpthread/pthread_specific.c
diff options
context:
space:
mode:
authorwiz <wiz@NetBSD.org>2003-05-15 19:16:37 +0000
committerwiz <wiz@NetBSD.org>2003-05-15 19:16:37 +0000
commit76907a433ec12b3424a5cdc338aa6f3bca55cdfc (patch)
tree8dbe75b392a5692b76fff8d9e4a534faf22a8081 /lib/libpthread/pthread_specific.c
parenta06836c083ba1153002efba45f6fb59a1ae1ba0d (diff)
Fix typo in comment.
Diffstat (limited to 'lib/libpthread/pthread_specific.c')
-rw-r--r--lib/libpthread/pthread_specific.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpthread/pthread_specific.c b/lib/libpthread/pthread_specific.c
index 0a45768dc89..fe4c8bcbe38 100644
--- a/lib/libpthread/pthread_specific.c
+++ b/lib/libpthread/pthread_specific.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_specific.c,v 1.7 2003/05/15 19:13:24 nathanw Exp $ */
+/* $NetBSD: pthread_specific.c,v 1.8 2003/05/15 19:16:37 wiz Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: pthread_specific.c,v 1.7 2003/05/15 19:13:24 nathanw Exp $");
+__RCSID("$NetBSD: pthread_specific.c,v 1.8 2003/05/15 19:16:37 wiz Exp $");
/* Functions and structures dealing with thread-specific data */
#include <errno.h>
@@ -162,7 +162,7 @@ pthread_key_delete(pthread_key_t key)
* Note that the argument in option 3 only applies because we
* keep TSD in ordinary memory which follows the pthreads
* visibility rules. The visibility rules are not required by
- * the standard to apply to TSD, so the arguemnt doesn't
+ * the standard to apply to TSD, so the argument doesn't
* apply in general, just to this implementation.
*/