Remove whitespace characters from source module

There were some unnecessary whitespace characters included on source
code module. This should be removed.

See also: #3144
master
NaveenKarippai 2016-05-31 18:20:41 +00:00
parent 6dbb2d39c1
commit fb5c48d35b
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,8 @@ handle remainder => sub {
return unless all { looks_like_number($_) } @numbers;
my $count = 0;
@numbers = map { 0 + $_ } grep { ++$count <= MAX_LIST_SIZE } @numbers; # Normalize and limit list size.
@numbers = map { 0 + $_ } grep { ++$count <= MAX_LIST_SIZE } @numbers; # Normalize and limit list size.
my $unsorted_list = join($delim, @numbers);
my $sorted_list = join($delim, sort { $ascending ? $a <=> $b : $b <=> $a } @numbers);
my $dir = $ascending ? 'ascendingly' : 'descendingly';