Subject: | RequireFinalCut fires if =cut isn't preceded by a blank line |
This code executes correctly:
my $x = 199;
=pod
blah blah
=cut
print "$x\n";
There should be a blank line before the =cut, and pod2text complains properly:
$ pod2text pod.pl
pod.pl around line 2: =pod directives shouldn't be over one line long! Ignoring all 2 lines of content
However, RequireFinalCut complains that there isn't a final =cut. I understand that there should be a blank line before the =cut, but the message should say that instead of saying that there isn't a =cut.