Skip to content

Commit

Permalink
Fix lists interpolating backwards
Browse files Browse the repository at this point in the history
  • Loading branch information
sorear committed Jul 20, 2010
1 parent 7b4cabe commit 8e5549c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setting
Expand Up @@ -492,8 +492,8 @@ my class List is Cool {
# we can't push anything onto items because it might be
# EMPTY
if ! $v.value.^isa(EMPTY) {
$r.unshift($v.value);
$r.unshift($v.next);
$r.unshift($v.value);
}
} else {
$i.push($v);
Expand Down

0 comments on commit 8e5549c

Please sign in to comment.