Skip to content

Commit

Permalink
Remove an is rw on an @ parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Sep 24, 2015
1 parent f6f656b commit c90270e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/advent2010-day11.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plan 2;

#use List::Utils;
#++ copied verbatim from List::Utils;
sub push-one-take-if-enough(@values is rw, $new-value, $n) {
sub push-one-take-if-enough(@values, $new-value, $n) {
@values.push($new-value);
@values.shift if +@values > $n;
if +@values == $n {
Expand Down

0 comments on commit c90270e

Please sign in to comment.