summaryrefslogtreecommitdiffstats
path: root/doc/CrtChannel.3
diff options
context:
space:
mode:
authorjenglish <jenglish@flightlab.com>2002-07-01 18:24:38 (GMT)
committerjenglish <jenglish@flightlab.com>2002-07-01 18:24:38 (GMT)
commit67fad087ab438ebbeb8d38658e7bfe9183c1b8b7 (patch)
tree0b85a12ebaae6394723689fc31593c4ec7ebed17 /doc/CrtChannel.3
parentd01a31dd2c3c0984c9ef185aec47a4c008e70b67 (diff)
downloadtcl-67fad087ab438ebbeb8d38658e7bfe9183c1b8b7.zip
tcl-67fad087ab438ebbeb8d38658e7bfe9183c1b8b7.tar.gz
tcl-67fad087ab438ebbeb8d38658e7bfe9183c1b8b7.tar.bz2
Spell-check, fixed typos (Updates from Larry Virden).
Diffstat (limited to 'doc/CrtChannel.3')
-rw-r--r--doc/CrtChannel.310
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/CrtChannel.3 b/doc/CrtChannel.3
index 3214e9c..477ef67 100644
--- a/doc/CrtChannel.3
+++ b/doc/CrtChannel.3
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: CrtChannel.3,v 1.15 2002/05/24 21:19:05 dkf Exp $
+'\" RCS: @(#) $Id: CrtChannel.3,v 1.16 2002/07/01 18:24:39 jenglish Exp $
.so man.macros
.TH Tcl_CreateChannel 3 8.3 Tcl "Tcl Library Procedures"
.BS
@@ -274,11 +274,11 @@ buffers for the stack of channels the supplied channel is part of.
\fIchannel\fR and returns whether the \fIchannel\fR was shared among
multiple interpreters (result == 1) or not (result == 0).
.PP
-\fBTcl_IsChannelRegistered\fR checks wether the specified \fIchannel\fR is
+\fBTcl_IsChannelRegistered\fR checks whether the specified \fIchannel\fR is
registered in the given \fIinterp\fRreter (result == 1) or not
(result == 0).
.PP
-\fBTcl_IsChannelExisting\fR checks wether a channel with the specified
+\fBTcl_IsChannelExisting\fR checks whether a channel with the specified
name is registered in the (thread)-global list of all channels (result
== 1) or not (result == 0).
.PP
@@ -760,7 +760,7 @@ a pointer to the function.
.SH HANDLERPROC
.PP
The \fIhandlerProc\fR field contains the address of a function called by
-the generic layer to notify the channel that an event occured. It should
+the generic layer to notify the channel that an event occurred. It should
be defined for stacked channel drivers that wish to be notified of events
that occur on the underlying (stacked) channel.
\fIHandlerProc\fR should match the following prototype:
@@ -774,7 +774,7 @@ typedef int Tcl_DriverHandlerProc(
\fIInstanceData\fR is the same as the value passed to \fBTcl_CreateChannel\fR
when this channel was created. The \fIinterestMask\fR is an OR-ed
combination of \fBTCL_READABLE\fR or \fBTCL_WRITABLE\fR; it indicates what
-type of event occured on this channel.
+type of event occurred on this channel.
.PP
This value can be retrieved with \fBTcl_ChannelHandlerProc\fR, which returns
a pointer to the function.