cvsuser 03/08/01 07:50:56
Modified: io io_buf.c
Log:
Fix a typo
Revision Changes Path
1.9 +4 -4 parrot/io/io_buf.c
Index: io_buf.c
===================================================================
RCS file: /cvs/public/parrot/io/io_buf.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -w -r1.8 -r1.9
--- io_buf.c 30 Jul 2003 14:59:52 -0000 1.8
+++ io_buf.c 1 Aug 2003 14:50:56 -0000 1.9
@@ -1,7 +1,7 @@
/* io_buf.c
* Copyright: 2001-2003 The Perl Foundation. All Rights Reserved.
* CVS Info
- * $Id: io_buf.c,v 1.8 2003/07/30 14:59:52 leo Exp $
+ * $Id: io_buf.c,v 1.9 2003/08/01 14:50:56 scog Exp $
* Overview:
* The "buf" layer of Parrot IO. Buffering and all the fun stuff.
*
@@ -89,7 +89,7 @@
if (l && l->api->Open) break;
}
if (!l) {
- /* Now underlying layer found */
+ /* No underlying layer found */
return NULL;
}
@@ -99,7 +99,7 @@
return NULL;
}
/*
- * We have an IO stream now setup stuff
+ * We have an IO stream. Now setup stuff
* for our layer before returning it.
*/
PIO_buf_setbuf(interpreter, l, io, PIO_UNBOUND);
@@ -109,7 +109,7 @@
/*
* Don't pass setbuf() calls down the stack, top layer wins.
- * This doesn't mean other layers can't buffer, I just to
+ * This doesn't mean other layers can't buffer, I just need to
* think about the mechanism for buffer control or if it even
* makes sense this way. Most layers will not implement setbuf()...
*/