Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #503 from zhuomingliang/patch-3
s/=/:=/, there are many similar code use :=, so no reason here is not :)
  • Loading branch information
lizmat committed Aug 20, 2015
2 parents 2a79bce + 9c599b4 commit 1fbbd02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/metaops.pm
Expand Up @@ -157,7 +157,7 @@ multi sub METAOP_REDUCE_RIGHT(\op, \triangle) {

gather {
take $result;
while (my $elem = iter.pull-one) !=:= IterationEnd {
while (my $elem := iter.pull-one) !=:= IterationEnd {
take $result := op.($elem, $result)
}
}
Expand Down

0 comments on commit 1fbbd02

Please sign in to comment.