Subject: | POD: Don't need to escape < and > in indented literal paragraphs |
POD bug,
You currently are doing things like
$dbh-E<gt>rollback();
$dbh-E<gt>commit();
You only need to do
$dbh->rollback();
$dbh->commit();
Take a look at what happens on search.cpan.org for these...