diff options
author | Kurt Miller <kurt@cvs.openbsd.org> | 2007-06-05 16:30:14 +0000 |
---|---|---|
committer | Kurt Miller <kurt@cvs.openbsd.org> | 2007-06-05 16:30:14 +0000 |
commit | 01544c1bd4ba0512f1ddf686dc9ba865f51f5cbc (patch) | |
tree | add5755a858222defd90939fdfbdaa7f43423c10 /lib/libpthread | |
parent | 04d811e764b20228997036942792e618c542b568 (diff) |
typos
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/thread/thread_tag.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpthread/thread/thread_tag.c b/lib/libpthread/thread/thread_tag.c index 5b45ed84f58..8f7f427aa8d 100644 --- a/lib/libpthread/thread/thread_tag.c +++ b/lib/libpthread/thread/thread_tag.c @@ -1,4 +1,4 @@ -/* $OpenBSD: thread_tag.c,v 1.2 2004/06/08 22:02:43 xsa Exp $ */ +/* $OpenBSD: thread_tag.c,v 1.3 2007/06/05 16:30:13 kurt Exp $ */ /* PUBLIC DOMAIN: No Rights Reserved. Marco S Hyman <marc@snafu.org> */ @@ -12,7 +12,7 @@ #include "pthread_private.h" /* - * A thread tag is a pointer to a structure of this time. An opaque + * A thread tag is a pointer to a structure of this type. An opaque * tag is used to decouple libc from the thread library. */ struct _thread_tag { @@ -90,7 +90,7 @@ _thread_tag_unlock(void **tag) /* * return the thread specific data for the given tag. If there - * is no date for this thread initialize it from 'storage'. + * is no data for this thread initialize it from 'storage'. * On any error return 'err'. */ void * |