Skip to content

Commit

Permalink
Use correctly spelled ops.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Feb 7, 2013
1 parent 380b200 commit adbccba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/NQPRoutine.pm
Expand Up @@ -223,7 +223,7 @@ my knowhow NQPRoutine {

method dispatch($capture) {
# Count arguments.
my $num_args := nqp::captueposelems($capture);
my $num_args := nqp::captureposelems($capture);

# Get list and number of candidates, triggering a sort if there are none.
my @candidates := $!dispatch_order;
Expand Down Expand Up @@ -276,7 +276,7 @@ my knowhow NQPRoutine {
$type_mismatch := 0;
$i := 0;
while $i < $type_check_count {
my $param := nqp::captueposarg($capture, $i);
my $param := nqp::captureposarg($capture, $i);
my $param_type := pir::what_or_null__PP($param); # Parrot hack; just .WHAT on JVM etc.
my $type_obj := $cur_candidate<types>[$i];
my $definedness := $cur_candidate<definednesses>[$i];
Expand Down

0 comments on commit adbccba

Please sign in to comment.