[svn:parrot] r39694 - in trunk: docs/pdds src/pmc
cotto at svn.parrot.org
cotto at svn.parrot.org
Mon Jun 22 02:49:36 UTC 2009
Author: cotto
Date: Mon Jun 22 02:49:35 2009
New Revision: 39694
URL: https://trac.parrot.org/parrot/changeset/39694
Log:
[pmc] fix a misnamed VTABLE function and reference in the docs
Modified:
trunk/docs/pdds/pdd27_multiple_dispatch.pod
trunk/src/pmc/multisub.pmc
Modified: trunk/docs/pdds/pdd27_multiple_dispatch.pod
==============================================================================
--- trunk/docs/pdds/pdd27_multiple_dispatch.pod Mon Jun 22 02:23:28 2009 (r39693)
+++ trunk/docs/pdds/pdd27_multiple_dispatch.pod Mon Jun 22 02:49:35 2009 (r39694)
@@ -105,7 +105,7 @@
matching, for a passed in signature. The signature passed in is an array of
PMCs, and the types are extracted from the types of the array elements.
-=item get_pmc_keyed_string
+=item get_pmc_keyed_str
Return an array of matching candidates, sorted from best matching to worst
matching, for a passed in signature. The signature passed in is a simple type
Modified: trunk/src/pmc/multisub.pmc
==============================================================================
--- trunk/src/pmc/multisub.pmc Mon Jun 22 02:23:28 2009 (r39693)
+++ trunk/src/pmc/multisub.pmc Mon Jun 22 02:49:35 2009 (r39694)
@@ -84,7 +84,7 @@
return SUPER(key);
}
- VTABLE PMC *get_pmc_keyed_string(STRING *s) {
+ VTABLE PMC *get_pmc_keyed_str(STRING *s) {
PMC * const sub = Parrot_mmd_sort_manhattan(INTERP, SELF);
if (PMC_IS_NULL(sub))
Parrot_ex_throw_from_c_args(INTERP, NULL, 1, "No applicable methods.\n");
More information about the parrot-commits
mailing list