# New Ticket Created by chromatic
# Please include the string: [perl #33017]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org:80/rt3/Ticket/Display.html?id=33017 >
Here's a patch to fix a few typos. If no one objects, I'll apply it.
All tests pass.
-- c
Index: classes/parrotlibrary.pmc
===================================================================
RCS file: /cvs/public/parrot/classes/parrotlibrary.pmc,v
retrieving revision 1.10
diff -u -u -r1.10 parrotlibrary.pmc
--- classes/parrotlibrary.pmc 31 Aug 2004 09:14:28 -0000 1.10
+++ classes/parrotlibrary.pmc 12 Dec 2004 23:33:23 -0000
@@ -88,7 +88,7 @@
=item C<INTVAL get_bool()>
-Returns wether a library has been successfully loaded.
+Returns whether a library has been successfully loaded.
=cut
@@ -102,7 +102,7 @@
=item C<STRING* get_string()>
-Returns wether a library has been successfully loaded.
+Returns whether a library has been successfully loaded.
=cut
Index: io/io_win32.c
===================================================================
RCS file: /cvs/public/parrot/io/io_win32.c,v
retrieving revision 1.47
diff -u -u -r1.47 io_win32.c
--- io/io_win32.c 21 Jun 2004 15:56:08 -0000 1.47
+++ io/io_win32.c 12 Dec 2004 23:33:24 -0000
@@ -166,7 +166,7 @@
}
#if PARROT_NET_DEVEL
/* Start Winsock
- * no idea where or wether destroy it
+ * no idea where or whether destroy it
*/
ret = WSAStartup (2, &sockinfo);
if (ret!=0){
Index: languages/befunge/debug.pasm
===================================================================
RCS file: /cvs/public/parrot/languages/befunge/debug.pasm,v
retrieving revision 1.6
diff -u -u -r1.6 debug.pasm
--- languages/befunge/debug.pasm 6 Feb 2004 14:23:09 -0000 1.6
+++ languages/befunge/debug.pasm 12 Dec 2004 23:33:24 -0000
@@ -17,7 +17,7 @@
ret
-# Check wether we should stop the interpreter at the current
+# Check whether we should stop the interpreter at the current
# moment, allowing user to play with the debugger.
DEBUG_CHECK_BREAKPOINT:
pushi
Index: languages/m4/examples/only_T7_0.frozen
===================================================================
RCS file: /cvs/public/parrot/languages/m4/examples/only_T7_0.frozen,v
retrieving revision 1.2
diff -u -u -r1.2 only_T7_0.frozen
--- languages/m4/examples/only_T7_0.frozen 26 Jan 2004 10:14:21 -0000 1.2
+++ languages/m4/examples/only_T7_0.frozen 12 Dec 2004 23:33:25 -0000
@@ -1,7 +1,7 @@
# $Id: only_T7_0.frozen,v 1.2 2004/01/26 10:14:21 leo Exp $
#
# This is a m4 frozen state file.
-# It used to test wether a pattern length of o is handled gracefully
+# It used to test whether a pattern length of o is handled gracefully
V1
T7,0
__gnu__
Index: languages/m4/src/builtin.imc
===================================================================
RCS file: /cvs/public/parrot/languages/m4/src/builtin.imc,v
retrieving revision 1.8
diff -u -u -r1.8 builtin.imc
--- languages/m4/src/builtin.imc 17 Nov 2004 09:24:48 -0000 1.8
+++ languages/m4/src/builtin.imc 12 Dec 2004 23:33:25 -0000
@@ -614,7 +614,7 @@
=head2 m4_ifdef
-A conditional. Check wether a macro is defined.
+A conditional. Check whether a macro is defined.
=cut
Index: languages/m4/src/m4.imc
===================================================================
RCS file: /cvs/public/parrot/languages/m4/src/m4.imc,v
retrieving revision 1.11
diff -u -u -r1.11 m4.imc
--- languages/m4/src/m4.imc 17 Nov 2004 09:24:48 -0000 1.11
+++ languages/m4/src/m4.imc 12 Dec 2004 23:33:25 -0000
@@ -109,7 +109,7 @@
state['nesting_limit'] = 250
state['expansion_level'] = 0
- # A flag that tells wether builtin macros should be prefixed with 'm4_'
+ # A flag that tells whether builtin macros should be prefixed with 'm4_'
state['prefix_all_builtins'] = 0
# Was '--nesting-limit' passed ?
@@ -239,13 +239,13 @@
end
ARGC_IS_OK:
- # We need the builtin_tab, wether '--reload_state' was passed or not
+ # We need the builtin_tab, whether '--reload_state' was passed or not
.local pmc builtin_tab
builtin_tab = new OrderedHash
state['builtin_tab'] = builtin_tab
builtin_tab_init( state )
- # Check wether the option --reload-state was passed
+ # Check whether the option --reload-state was passed
.local string frozen_file
frozen_file = opt['reload-state']
.local int string_len
Index: runtime/parrot/library/Getopt/Long.imc
===================================================================
RCS file: /cvs/public/parrot/runtime/parrot/library/Getopt/Long.imc,v
retrieving revision 1.5
diff -u -u -r1.5 Long.imc
--- runtime/parrot/library/Getopt/Long.imc 4 Nov 2004 10:06:50 -0000 1.5
+++ runtime/parrot/library/Getopt/Long.imc 12 Dec 2004 23:33:25 -0000
@@ -84,7 +84,7 @@
OPTION_TYPE_IS_NOW_KNOWN:
type[opt_name] = opt_type
inc curr_spec
- CHECK_PARSE_SPEC: # check wether loop over 'spec' is complete
+ CHECK_PARSE_SPEC: # check whether loop over 'spec' is complete
if curr_spec < max_spec goto NEXT_PARSE_SPEC
# uncomment this if you want debug output
@@ -100,9 +100,9 @@
opt = new PerlHash
.local string arg # element of argument array
.local string value # element of argument array
- .local int num_remaining_args # for checking wether loop is complete
+ .local int num_remaining_args # for checking whether loop is complete
.local int arg_index # holds result if 'index' op
- .local int is_known_option # flag wether the option is known
+ .local int is_known_option # flag whether the option is known
goto CHECK_PARSE_ARGV
NEXT_PARSE_ARGV:
# first we take a peek at the first remaining element
Index: t/pmc/array.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/array.t,v
retrieving revision 1.20
diff -u -u -r1.20 array.t
--- t/pmc/array.t 1 Oct 2004 21:16:52 -0000 1.20
+++ t/pmc/array.t 12 Dec 2004 23:33:28 -0000
@@ -437,7 +437,7 @@
21030
OUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/bigint.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/bigint.t,v
retrieving revision 1.10
diff -u -u -r1.10 bigint.t
--- t/pmc/bigint.t 9 Dec 2004 13:31:06 -0000 1.10
+++ t/pmc/bigint.t 12 Dec 2004 23:33:28 -0000
@@ -339,7 +339,7 @@
1230000000000
OUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/boolean.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/boolean.t,v
retrieving revision 1.7
diff -u -u -r1.7 boolean.t
--- t/pmc/boolean.t 1 Oct 2004 21:16:52 -0000 1.7
+++ t/pmc/boolean.t 12 Dec 2004 23:33:28 -0000
@@ -263,7 +263,7 @@
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/complex.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/complex.t,v
retrieving revision 1.8
diff -u -u -r1.8 complex.t
--- t/pmc/complex.t 7 Dec 2004 10:50:41 -0000 1.8
+++ t/pmc/complex.t 12 Dec 2004 23:33:28 -0000
@@ -533,7 +533,7 @@
5
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/coroutine.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/coroutine.t,v
retrieving revision 1.13
diff -u -u -r1.13 coroutine.t
--- t/pmc/coroutine.t 19 Nov 2004 13:45:32 -0000 1.13
+++ t/pmc/coroutine.t 12 Dec 2004 23:33:28 -0000
@@ -630,7 +630,7 @@
.end
CODE
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/env.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/env.t,v
retrieving revision 1.10
diff -u -u -r1.10 env.t
--- t/pmc/env.t 1 Oct 2004 21:16:52 -0000 1.10
+++ t/pmc/env.t 12 Dec 2004 23:33:28 -0000
@@ -113,7 +113,7 @@
OUT
}
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/fixedbooleanarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/fixedbooleanarray.t,v
retrieving revision 1.3
diff -u -u -r1.3 fixedbooleanarray.t
--- t/pmc/fixedbooleanarray.t 1 Oct 2004 21:16:52 -0000 1.3
+++ t/pmc/fixedbooleanarray.t 12 Dec 2004 23:33:28 -0000
@@ -263,7 +263,7 @@
ok 4
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/fixedfloatarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/fixedfloatarray.t,v
retrieving revision 1.5
diff -u -u -r1.5 fixedfloatarray.t
--- t/pmc/fixedfloatarray.t 1 Oct 2004 21:16:52 -0000 1.5
+++ t/pmc/fixedfloatarray.t 12 Dec 2004 23:33:28 -0000
@@ -310,7 +310,7 @@
ok 2
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/fixedintegerarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/fixedintegerarray.t,v
retrieving revision 1.3
diff -u -u -r1.3 fixedintegerarray.t
--- t/pmc/fixedintegerarray.t 1 Oct 2004 21:16:52 -0000 1.3
+++ t/pmc/fixedintegerarray.t 12 Dec 2004 23:33:28 -0000
@@ -263,7 +263,7 @@
ok 4
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/fixedpmcarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/fixedpmcarray.t,v
retrieving revision 1.7
diff -u -u -r1.7 fixedpmcarray.t
--- t/pmc/fixedpmcarray.t 28 Oct 2004 07:59:29 -0000 1.7
+++ t/pmc/fixedpmcarray.t 12 Dec 2004 23:33:28 -0000
@@ -335,7 +335,7 @@
1 2 5 9 10 x
compares: [1-9]\d*/, "sort");
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/fixedstringarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/fixedstringarray.t,v
retrieving revision 1.3
diff -u -u -r1.3 fixedstringarray.t
--- t/pmc/fixedstringarray.t 1 Oct 2004 21:16:52 -0000 1.3
+++ t/pmc/fixedstringarray.t 12 Dec 2004 23:33:28 -0000
@@ -263,7 +263,7 @@
ok 4
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/float.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/float.t,v
retrieving revision 1.7
diff -u -u -r1.7 float.t
--- t/pmc/float.t 1 Oct 2004 21:16:52 -0000 1.7
+++ t/pmc/float.t 12 Dec 2004 23:33:28 -0000
@@ -773,7 +773,7 @@
ok 8
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/floatvalarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/floatvalarray.t,v
retrieving revision 1.3
diff -u -u -r1.3 floatvalarray.t
--- t/pmc/floatvalarray.t 22 Aug 2004 09:15:52 -0000 1.3
+++ t/pmc/floatvalarray.t 12 Dec 2004 23:33:28 -0000
@@ -120,7 +120,7 @@
Done
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/integer.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/integer.t,v
retrieving revision 1.1
diff -u -u -r1.1 integer.t
--- t/pmc/integer.t 19 Oct 2004 14:11:48 -0000 1.1
+++ t/pmc/integer.t 12 Dec 2004 23:33:28 -0000
@@ -138,7 +138,7 @@
A newly created Integer is an Integer.
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/intlist.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/intlist.t,v
retrieving revision 1.14
diff -u -u -r1.14 intlist.t
--- t/pmc/intlist.t 1 Oct 2004 21:16:52 -0000 1.14
+++ t/pmc/intlist.t 12 Dec 2004 23:33:28 -0000
@@ -536,7 +536,7 @@
1
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/managedstruct.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/managedstruct.t,v
retrieving revision 1.12
diff -u -u -r1.12 managedstruct.t
--- t/pmc/managedstruct.t 1 Oct 2004 21:16:52 -0000 1.12
+++ t/pmc/managedstruct.t 12 Dec 2004 23:33:28 -0000
@@ -240,7 +240,7 @@
8
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/multiarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/multiarray.t,v
retrieving revision 1.9
diff -u -u -r1.9 multiarray.t
--- t/pmc/multiarray.t 1 Oct 2004 21:16:52 -0000 1.9
+++ t/pmc/multiarray.t 12 Dec 2004 23:33:28 -0000
@@ -193,7 +193,7 @@
ok 3
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/orderedhash.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/orderedhash.t,v
retrieving revision 1.8
diff -u -u -r1.8 orderedhash.t
--- t/pmc/orderedhash.t 1 Oct 2004 21:16:52 -0000 1.8
+++ t/pmc/orderedhash.t 12 Dec 2004 23:33:28 -0000
@@ -506,7 +506,7 @@
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/perlarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/perlarray.t,v
retrieving revision 1.37
diff -u -u -r1.37 perlarray.t
--- t/pmc/perlarray.t 1 Oct 2004 21:16:52 -0000 1.37
+++ t/pmc/perlarray.t 12 Dec 2004 23:33:28 -0000
@@ -1392,7 +1392,7 @@
/
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/perlint.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/perlint.t,v
retrieving revision 1.20
diff -u -u -r1.20 perlint.t
--- t/pmc/perlint.t 12 Oct 2004 08:35:14 -0000 1.20
+++ t/pmc/perlint.t 12 Dec 2004 23:33:28 -0000
@@ -970,7 +970,7 @@
ok 6
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/perlnum.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/perlnum.t,v
retrieving revision 1.10
diff -u -u -r1.10 perlnum.t
--- t/pmc/perlnum.t 1 Oct 2004 21:16:52 -0000 1.10
+++ t/pmc/perlnum.t 12 Dec 2004 23:33:28 -0000
@@ -809,7 +809,7 @@
0 is false
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/perlstring.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/perlstring.t,v
retrieving revision 1.29
diff -u -u -r1.29 perlstring.t
--- t/pmc/perlstring.t 10 Dec 2004 10:15:19 -0000 1.29
+++ t/pmc/perlstring.t 12 Dec 2004 23:33:28 -0000
@@ -1229,7 +1229,7 @@
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/ref.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/ref.t,v
retrieving revision 1.8
diff -u -u -r1.8 ref.t
--- t/pmc/ref.t 1 Oct 2004 21:16:52 -0000 1.8
+++ t/pmc/ref.t 12 Dec 2004 23:33:28 -0000
@@ -142,7 +142,7 @@
deref not allowed/
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/resizablebooleanarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/resizablebooleanarray.t,v
retrieving revision 1.5
diff -u -u -r1.5 resizablebooleanarray.t
--- t/pmc/resizablebooleanarray.t 19 Oct 2004 01:14:36 -0000 1.5
+++ t/pmc/resizablebooleanarray.t 12 Dec 2004 23:33:28 -0000
@@ -285,7 +285,7 @@
ok 4
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/resizablefloatarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/resizablefloatarray.t,v
retrieving revision 1.6
diff -u -u -r1.6 resizablefloatarray.t
--- t/pmc/resizablefloatarray.t 19 Oct 2004 01:14:36 -0000 1.6
+++ t/pmc/resizablefloatarray.t 12 Dec 2004 23:33:28 -0000
@@ -409,7 +409,7 @@
/ResizableFloatArray: Can't pop from an empty array!/
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/resizableintegerarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/resizableintegerarray.t,v
retrieving revision 1.5
diff -u -u -r1.5 resizableintegerarray.t
--- t/pmc/resizableintegerarray.t 19 Oct 2004 01:14:36 -0000 1.5
+++ t/pmc/resizableintegerarray.t 12 Dec 2004 23:33:28 -0000
@@ -269,7 +269,7 @@
ok 4
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/resizablepmcarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/resizablepmcarray.t,v
retrieving revision 1.6
diff -u -u -r1.6 resizablepmcarray.t
--- t/pmc/resizablepmcarray.t 19 Oct 2004 01:14:36 -0000 1.6
+++ t/pmc/resizablepmcarray.t 12 Dec 2004 23:33:28 -0000
@@ -268,7 +268,7 @@
ok 4
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/resizablestringarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/resizablestringarray.t,v
retrieving revision 1.5
diff -u -u -r1.5 resizablestringarray.t
--- t/pmc/resizablestringarray.t 19 Oct 2004 01:14:36 -0000 1.5
+++ t/pmc/resizablestringarray.t 12 Dec 2004 23:33:28 -0000
@@ -270,7 +270,7 @@
ok 4
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/sarray.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/sarray.t,v
retrieving revision 1.9
diff -u -u -r1.9 sarray.t
--- t/pmc/sarray.t 1 Oct 2004 21:16:52 -0000 1.9
+++ t/pmc/sarray.t 12 Dec 2004 23:33:28 -0000
@@ -474,7 +474,7 @@
morph\(\) in ConstSArray/
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/string.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/string.t,v
retrieving revision 1.3
diff -u -u -r1.3 string.t
--- t/pmc/string.t 1 Oct 2004 21:16:52 -0000 1.3
+++ t/pmc/string.t 12 Dec 2004 23:33:28 -0000
@@ -1117,7 +1117,7 @@
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/timer.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/timer.t,v
retrieving revision 1.14
diff -u -u -r1.14 timer.t
--- t/pmc/timer.t 19 Nov 2004 13:45:32 -0000 1.14
+++ t/pmc/timer.t 12 Dec 2004 23:33:28 -0000
@@ -245,7 +245,7 @@
OUT
}
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1
Index: t/pmc/undef.t
===================================================================
RCS file: /cvs/public/parrot/t/pmc/undef.t,v
retrieving revision 1.4
diff -u -u -r1.4 undef.t
--- t/pmc/undef.t 19 Oct 2004 01:25:36 -0000 1.4
+++ t/pmc/undef.t 12 Dec 2004 23:33:28 -0000
@@ -218,7 +218,7 @@
OUTPUT
-output_is(<< 'CODE', << 'OUTPUT', "check wether interface is done");
+output_is(<< 'CODE', << 'OUTPUT', "check whether interface is done");
##PIR##
.sub _main
.local pmc pmc1