From 2f489f2c8f65a48b6ee9376ac4da9c5fba07d8f1 Mon Sep 17 00:00:00 2001 From: Moritz Lenz Date: Sat, 14 Feb 2009 22:41:06 +0100 Subject: [PATCH] fix spelling of function name in perl6multisub.pmc --- src/pmc/perl6multisub.pmc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pmc/perl6multisub.pmc b/src/pmc/perl6multisub.pmc index 51389767b3d..2e5708423cd 100644 --- a/src/pmc/perl6multisub.pmc +++ b/src/pmc/perl6multisub.pmc @@ -263,7 +263,7 @@ static INTVAL is_narrower(PARROT_INTERP, candidate_info *a, candidate_info *b) { /* -=item C +=item C Takes a ResizablePMCArray of the candidates, collects information about them and then does a topological sort of them. @@ -271,7 +271,7 @@ and then does a topological sort of them. =cut */ -static candidate_info** sort_candidiates(PARROT_INTERP, PMC *candidates, PMC **proto_out) { +static candidate_info** sort_candidates(PARROT_INTERP, PMC *candidates, PMC **proto_out) { INTVAL i; PMC *found_proto = PMCNULL; const char *error = NULL; @@ -866,7 +866,7 @@ the Perl 6 MMD algorithm. GETATTR_Perl6MultiSub_proto(interp, SELF, proto); if (!candidates) { - candidates = sort_candidiates(interp, unsorted, &proto); + candidates = sort_candidates(interp, unsorted, &proto); SETATTR_Perl6MultiSub_candidates_sorted(interp, SELF, candidates); SETATTR_Perl6MultiSub_proto(interp, SELF, proto); } @@ -925,7 +925,7 @@ Takes an array of arguments and finds all possible matching candidates. GETATTR_Perl6MultiSub_proto(interp, SELF, proto); if (!candidates) { - candidates = sort_candidiates(interp, unsorted, &proto); + candidates = sort_candidates(interp, unsorted, &proto); SETATTR_Perl6MultiSub_candidates_sorted(interp, SELF, candidates); SETATTR_Perl6MultiSub_proto(interp, SELF, proto); }