Subject: | Typo in the Synopsis |
There is a closing curly bracket missing in
print STDERR join(' ', @{ $ref->{error} ) . "\n";
it should instead be
print STDERR join(' ', @{ $ref->{error} } ) . "\n";
See https://www.perlmonks.org/?node_id=11113033 for the original report.