Subject: | SYNOPSIS is confusing |
The SYNOPSIS is supposed to give a short overview of a module's functionality in the form of one or more lines of Perl code.
P has this instead:
P FILEHANDLE, FORMAT, LIST
P FORMAT, LIST
P @ARRAY
$s=P @ARRAY; P $s; # same output as "P @
Pe # same as P, but output to STDERR
The first and second lines are not Perl code; they're some abstract template. I'd expect to find this in the DESCRIPTION.
The third line is a Perl fragment (not a complete statement due to lack of ';').
The fourth line is Perl code.
The fifth line simply lists a function name with a short description in English.
This should probably be cleaned up to use the same type of description for all lines, preferably Perl code for consistency with other modules.