Skip to content

Commit 480bfe1

Browse files
committed
perltidy the change as requested.
1 parent 1647d0a commit 480bfe1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/MetaCPAN/Web/Controller/Release.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ sub view : Private {
6666
## Remove author from contributors list
6767
my $author_name = $data->{author}->{name};
6868
my $contributors = [];
69-
foreach my $contributor (@{$data->{contributors}}) {
70-
if ($contributor->{name} !~ /\b$author_name\b/) {
69+
foreach my $contributor ( @{ $data->{contributors} } ) {
70+
if ( $contributor->{name} !~ /\b$author_name\b/ ) {
7171
push @$contributors, $contributor;
7272
}
7373
}

0 commit comments

Comments
 (0)