Skip to content

Commit

Permalink
small fix in series operator
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Mar 21, 2010
1 parent 9780625 commit 3c9f65b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/operators.pm
Expand Up @@ -358,9 +358,9 @@ our multi sub infix:<...>(@lhs is copy, $rhs) {
given @lhs.elems {
when 1 {
if @lhs[0] cmp $rhs == 1 {
$next = { $.prec };
$next = { .prec };
} else {
$next = { $.succ };
$next = { .succ };
}
}
when 2 {
Expand Down

0 comments on commit 3c9f65b

Please sign in to comment.