From 3c9f65b23577fd3f369ccbe825728ecdbbb51af5 Mon Sep 17 00:00:00 2001 From: Moritz Lenz Date: Sun, 21 Mar 2010 18:16:27 +0100 Subject: [PATCH] small fix in series operator --- src/core/operators.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/operators.pm b/src/core/operators.pm index 13d7191b8df..d33b997d6be 100644 --- a/src/core/operators.pm +++ b/src/core/operators.pm @@ -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 {