summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsc2000-12-22 09:32:07 +0000
committersc2000-12-22 09:32:07 +0000
commitada4054083347b3aad09b62b66820ffab4b681fe (patch)
tree44064f5d41703d62e8c6e4c269e4cd67a4a97cba
parent6711bb2f7c98b93f15271f71efaa585a98f3e4a5 (diff)
downloadivy-league-ada4054083347b3aad09b62b66820ffab4b681fe.zip
ivy-league-ada4054083347b3aad09b62b66820ffab4b681fe.tar.gz
ivy-league-ada4054083347b3aad09b62b66820ffab4b681fe.tar.bz2
ivy-league-ada4054083347b3aad09b62b66820ffab4b681fe.tar.xz
Fixed typos in doc
-rw-r--r--comm/Channel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/comm/Channel.cc b/comm/Channel.cc
index 98bc97c..f233e00 100644
--- a/comm/Channel.cc
+++ b/comm/Channel.cc
@@ -157,7 +157,7 @@ It has a mode, of type \typ{^{IOMODE}}, with possible values
\index{IOMODE :: IONone}\index{IOMODE :: IORead}\index{IOMODE :: IOWrite}\index{IOMODE :: IOReadWrite}\index{IOMODE :: IOSelect}\index{IOMODE :: IOReadSelect}\index{IOMODE :: IOWriteSelect}\index{IOMODE :: IOAll}
Before being initialized, a IvlChannel.has mode \var{IONone} and is said to be closed.
-A IvlChannel.has a number of virtual functions.
+A channel has a number of virtual functions.
The destructor is virtual; this is useful for classes that store pointers to objects
of a class derived from \typ{IvlChannel} (like in the class \typ{IvlSocket}).
The functions \fun{HandleSelect}, \fun{HandleRead} and \fun{HandleWrite}
@@ -168,7 +168,7 @@ Such capabilities are used and thus illustrated in class \typ{IvlScheduler}.
A \typ{IvlChannel} can be associated with only one \typ{IvlBaseScheduler}
at a time by using the functions \fun{Add} and \fun{Remove} of the Channel.
When it is added/removed from its Multiplexor,
-virtual function \fun{Added/Removed} is called.
+the virtual function \fun{Added/Removed} is called.
?*/
/*?