aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xchallenge-268/mattneleigh/perl/ch-2.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-268/mattneleigh/perl/ch-2.pl b/challenge-268/mattneleigh/perl/ch-2.pl
index b9173990bc..e1a5790748 100755
--- a/challenge-268/mattneleigh/perl/ch-2.pl
+++ b/challenge-268/mattneleigh/perl/ch-2.pl
@@ -45,7 +45,7 @@ sub transposed_sort{
my @rearranged;
while(@ints){
- # Grab a the first two remaining elements from the
+ # Grab the first two remaining elements from the
# sorted argument list, and add them to the
# rearranged list in reversed order
push(@rearranged, (splice(@ints, 0, 2))[1, 0]);