summaryrefslogtreecommitdiffstats
path: root/generic/tclIO.c
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2004-03-09 12:59:04 (GMT)
committervincentdarley <vincentdarley>2004-03-09 12:59:04 (GMT)
commit178507e4d068311f44babc3ae8960e2555c7841d (patch)
treeb0cb4ba91f317961d72f620ce8fe4c4d002b3bee /generic/tclIO.c
parent2e488121f5c9875f01b112b8050af3dedb46ec8b (diff)
downloadtcl-178507e4d068311f44babc3ae8960e2555c7841d.zip
tcl-178507e4d068311f44babc3ae8960e2555c7841d.tar.gz
tcl-178507e4d068311f44babc3ae8960e2555c7841d.tar.bz2
fixed typos in documentation and comments
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r--generic/tclIO.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c
index 09ebdba..55db84a 100644
--- a/generic/tclIO.c
+++ b/generic/tclIO.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIO.c,v 1.70 2004/02/02 21:31:21 davygrvy Exp $
+ * RCS: @(#) $Id: tclIO.c,v 1.71 2004/03/09 12:59:04 vincentdarley Exp $
*/
#include "tclInt.h"
@@ -4131,7 +4131,7 @@ CommonGetsCleanup(chanPtr, encoding)
* Tcl_Read --
*
* Reads a given number of bytes from a channel. EOL and EOF
- * translation is done on the bytes being read, so the the number
+ * translation is done on the bytes being read, so the number
* of bytes consumed from the channel may not be equal to the
* number of bytes stored in the destination buffer.
*
@@ -4175,7 +4175,7 @@ Tcl_Read(chan, dst, bytesToRead)
* Tcl_ReadRaw --
*
* Reads a given number of bytes from a channel. EOL and EOF
- * translation is done on the bytes being read, so the the number
+ * translation is done on the bytes being read, so the number
* of bytes consumed from the channel may not be equal to the
* number of bytes stored in the destination buffer.
*
@@ -6886,7 +6886,7 @@ UpdateInterest(chanPtr)
* - It reads data into a buffer smaller than the buffer
* used by Tcl itself.
* - It does not process all events in the event queue, but
- * only only one, at least in some situations.
+ * only one, at least in some situations.
*
* In that case we can get into a situation where
*