Skip to content

Commit adbccba

Browse files
committed
Use correctly spelled ops.
1 parent 380b200 commit adbccba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/NQPRoutine.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ my knowhow NQPRoutine {
223223

224224
method dispatch($capture) {
225225
# Count arguments.
226-
my $num_args := nqp::captueposelems($capture);
226+
my $num_args := nqp::captureposelems($capture);
227227

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

0 commit comments

Comments
 (0)