cvsuser 04/02/25 08:30:17
Modified: t/src extend.t
io io.c
docs/dev pmc_freeze.pod
Log:
Fix misc. typos
Revision Changes Path
1.19 +2 -2 parrot/t/src/extend.t
Index: extend.t
===================================================================
RCS file: /cvs/public/parrot/t/src/extend.t,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -w -r1.18 -r1.19
--- extend.t 24 Feb 2004 23:06:29 -0000 1.18
+++ extend.t 25 Feb 2004 16:30:11 -0000 1.19
@@ -1,6 +1,6 @@
#! perl -w
# Copyright: 2001-2003 The Perl Foundation. All Rights Reserved.
-# $Id: extend.t,v 1.18 2004/02/24 23:06:29 scog Exp $
+# $Id: extend.t,v 1.19 2004/02/25 16:30:11 scog Exp $
# Tests the extension API
=head1 NAME
@@ -11,7 +11,7 @@
% perl t/src/extend.t
-=head1 DECSRIPTION
+=head1 DESCRIPTION
Tests the extension API.
1.82 +2 -2 parrot/io/io.c
Index: io.c
===================================================================
RCS file: /cvs/public/parrot/io/io.c,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -w -r1.81 -r1.82
--- io.c 19 Feb 2004 20:30:10 -0000 1.81
+++ io.c 25 Feb 2004 16:30:14 -0000 1.82
@@ -1,6 +1,6 @@
/*
Copyright: 2001-2003 The Perl Foundation. All Rights Reserved.
-$Id: io.c,v 1.81 2004/02/19 20:30:10 mrjoltcola Exp $
+$Id: io.c,v 1.82 2004/02/25 16:30:14 scog Exp $
=head1 NAME
@@ -18,7 +18,7 @@
separate files: F<io/io_buf.c>, F<io/io_stdio.c>, F<io/io_unix.c>,
F<io/io_win32.c>.
-The C<ParrotIO> PMC provides th class-based interface that is used in
+The C<ParrotIO> PMC provides the class-based interface that is used in
Parrot ops. The C<ParrotIO struct> is defined in F<io/io_private.h>.
=head2 Resource Functions
1.6 +1 -1 parrot/docs/dev/pmc_freeze.pod
Index: pmc_freeze.pod
===================================================================
RCS file: /cvs/public/parrot/docs/dev/pmc_freeze.pod,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -w -r1.5 -r1.6
--- pmc_freeze.pod 26 Nov 2003 10:40:08 -0000 1.5
+++ pmc_freeze.pod 25 Feb 2004 16:30:16 -0000 1.6
@@ -268,7 +268,7 @@
The escape flag marks places in the image, where additional data will
follow. After the escape flag is an int defining the kind of the
-follwing data, passed on in B<extra_flags>. During B<thaw> the PMCs
+following data, passed on in B<extra_flags>. During B<thaw> the PMCs
vtable is called again, to restore these data. So a PMCs B<thaw>
vtable has to check B<extra_flags> if normal or extra data have to be
shifted from the image.