summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMike Pechkin <mpech@cvs.openbsd.org>2002-06-25 15:39:39 +0000
committerMike Pechkin <mpech@cvs.openbsd.org>2002-06-25 15:39:39 +0000
commitd29e851ef54a777972f4954e65694de8444af0f3 (patch)
tree331b9a107ed08ae0ba64c80507f460cf5609ec1d /lib
parent2ddec7c6b2c6421a9370dd6f741f41ffc09411d5 (diff)
typos. Patch from bk@rt.fr
millert@ ok
Diffstat (limited to 'lib')
-rw-r--r--lib/libevent/event.320
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/libevent/event.3 b/lib/libevent/event.3
index eb7c8b63bb4..4b52148eb0a 100644
--- a/lib/libevent/event.3
+++ b/lib/libevent/event.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: event.3,v 1.1 2002/06/15 18:01:37 provos Exp $
+.\" $OpenBSD: event.3,v 1.2 2002/06/25 15:39:38 mpech Exp $
.\"
.\" Copyright (c) 2000 Artur Grabowski <art@openbsd.org>
.\" All rights reserved.
@@ -37,17 +37,17 @@
.Nm event_add ,
.Nm event_del ,
.Nm event_pending ,
-.Nm event_initalized ,
+.Nm event_initialized ,
.Nm timeout_set ,
.Nm timeout_add ,
.Nm timeout_del
.Nm timeout_pending ,
-.Nm timeout_initalized ,
+.Nm timeout_initialized ,
.Nm signal_set ,
.Nm signal_add ,
.Nm signal_del
.Nm signal_pending ,
-.Nm signal_initalized ,
+.Nm signal_initialized
.Nd execute a function when a specific event occurs
.Sh SYNOPSIS
.Fd #include <event.h>
@@ -99,7 +99,7 @@ on a file descriptor occurs or after at a given time has passed.
.Pp
The
.Nm event
-API needs to be initalized with
+API needs to be initialized with
.Fn event_init
before it can be used.
.Pp
@@ -158,7 +158,7 @@ The event will be prepared to call the function specified by the
.Fa fn
argument with an
.Fa int
-argument indicating the file descriptor, with a
+argument indicating the file descriptor, a
.Fa short
argument indicating the type of event, and a
.Fa void *
@@ -169,8 +169,8 @@ The
.Fa fd
indicates the file descriptor that should be monitored for events.
The events can be either
-.Va EV_READ,
-.Va EV_WRITE,
+.Va EV_READ ,
+.Va EV_WRITE ,
or both.
Indicating that an application can read or write from the file descriptor
respectively without blocking.
@@ -198,8 +198,8 @@ structure can be used repeatedly with
.Fn event_add
and
.Fn event_del
-and does not need to be reinitialized unless you wish to
-change the function called and/or the argument to it.
+and does not need to be reinitialized unless the function called and/or
+the argument to it are to be changed.
.Pp
The function
.Fn event_add