[svn:parrot] r36164 - in trunk: docs/pdds src

Infinoid at svn.parrot.org Infinoid at svn.parrot.org
Fri Jan 30 00:03:38 UTC 2009


Author: Infinoid
Date: Fri Jan 30 00:03:37 2009
New Revision: 36164
URL: https://trac.parrot.org/parrot/log/branches?rev=36164

Log:
[cage] Fix a couple of codetest failures.

Modified:
   trunk/docs/pdds/pdd28_strings.pod
   trunk/src/pdump.c

Modified: trunk/docs/pdds/pdd28_strings.pod
==============================================================================
--- trunk/docs/pdds/pdd28_strings.pod	Thu Jan 29 23:46:11 2009	(r36163)
+++ trunk/docs/pdds/pdd28_strings.pod	Fri Jan 30 00:03:37 2009	(r36164)
@@ -399,8 +399,8 @@
 =head3 Parrot_str_new (was string_from_cstring)
 
 Return a new string with the default encoding and character set. Accepts two
-arguments, a C string (C<char *>) to initialize the value of the string, and an
-integer length of the string (number of characters). If the integer length
+arguments, a C string (C<char *>) to initialize the value of the string, and
+an integer length of the string (number of characters). If the integer length
 isn't passed, the function will calculate the length.
 
 {{NOTE: the integer length isn't really necessary, and is under consideration

Modified: trunk/src/pdump.c
==============================================================================
--- trunk/src/pdump.c	Thu Jan 29 23:46:11 2009	(r36163)
+++ trunk/src/pdump.c	Fri Jan 30 00:03:37 2009	(r36164)
@@ -142,7 +142,7 @@
     Parrot_io_printf(interp, "HEADER => [\n");
     Parrot_io_printf(interp, "\twordsize  = %d", pf->header->wordsize);
     Parrot_io_printf(interp, "\t(interpreter's wordsize/INTVAL = %d/%d)\n",
-                     sizeof (opcode_t),sizeof (INTVAL));
+                     sizeof (opcode_t), sizeof (INTVAL));
     Parrot_io_printf(interp, "\tbyteorder = %d", pf->header->byteorder);
     Parrot_io_printf(interp, "\t(interpreter's byteorder       = %d)\n",
             PARROT_BIGENDIAN);


More information about the parrot-commits mailing list