Skip to content

Commit

Permalink
Tidy.
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Mar 8, 2016
1 parent 175cd9a commit 0752c85
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/MetaCPAN/Document/File.pm
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,8 @@ has documentation => (
sub _build_documentation {
my $self = shift;
$self->_build_abstract;
my $documentation = $self->has_documentation ? $self->documentation : undef;
my $documentation
= $self->has_documentation ? $self->documentation : undef;
return undef unless ( ${ $self->pod } );
my @indexed = grep { $_->indexed } @{ $self->module || [] };
if ( $documentation && $self->is_pod_file ) {
Expand Down

0 comments on commit 0752c85

Please sign in to comment.