Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
s/=/:=/
There are many similar code use :=, so no reason here is not :)
  • Loading branch information
zhuomingliang committed Aug 20, 2015
1 parent 2a79bce commit 9c599b4
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 9c599b4

Please sign in to comment.