Skip to content

Commit

Permalink
Correct spelling of method in its declaration and single instance.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeenan committed Jun 10, 2012
1 parent a1965e0 commit e9b024c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Parrot/Pmc2c/PMC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1572,7 +1572,7 @@ sub generate_single_case {
if ($type eq 'DEFAULT' || $type eq 'PMC') {
# For default case we have to handle return manually.
my ($pcc_signature, $retval, $call_tail, $pcc_return)
= gen_defaul_case_wrapping($impl);
= gen_default_case_wrapping($impl);
my $dispatch = "Parrot_mmd_multi_dispatch_from_c_args(INTERP, \"$vt_method_name\", \"$pcc_signature\", SELF, $parameters$call_tail);";

$case = <<"CASE";
Expand Down Expand Up @@ -1612,7 +1612,7 @@ CASE

# Generate (pcc_signature, retval holder, pcc_call_tail, return statement)
# for default case in switch.
sub gen_defaul_case_wrapping {
sub gen_default_case_wrapping {
my $method = shift;

local $_ = $method->return_type;
Expand Down

0 comments on commit e9b024c

Please sign in to comment.