cvsuser 05/02/02 11:37:34
Modified: src py_func.c
Log:
fix typo
Revision Changes Path
1.50 +2 -2 parrot/src/py_func.c
Index: py_func.c
===================================================================
RCS file: /cvs/public/parrot/src/py_func.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- py_func.c 13 Dec 2004 13:46:26 -0000 1.49
+++ py_func.c 2 Feb 2005 19:37:34 -0000 1.50
@@ -1,6 +1,6 @@
/*
Copyright: 2001-2004 The Perl Foundation. All Rights Reserved.
-$Id: py_func.c,v 1.49 2004/12/13 13:46:26 leo Exp $
+$Id: py_func.c,v 1.50 2005/02/02 19:37:34 coke Exp $
=head1 NAME
@@ -59,7 +59,7 @@
PMC *s = pmc_new_noinit(interpreter, enum_class_PerlString);
INTVAL i = VTABLE_get_integer(interpreter, pmc);
/*
- * TODO if i < 0 || > 255 throgh ValueError
+ * TODO if i < 0 || > 255 throw ValueError
*/
PMC_str_val(s) = string_chr(interpreter, (UINTVAL)i);
PObj_custom_mark_SET(s);