Subject: | [Patch] POD nits |
The attached patch (against 0.06) fixes some POD, which renders wrong,
at least at search.cpan.org.
Subject: | pod.patch |
diff --git a/lib/PerlMaple.pm b/lib/PerlMaple.pm
index d699f4c..e93a61e 100644
--- a/lib/PerlMaple.pm
+++ b/lib/PerlMaple.pm
@@ -330,7 +330,7 @@ The PrintError attribute can be used to force errors to generate warnings
(using Carp::carp) in addition to returning error codes in the normal way. When
set ``on'' (say, a true value), any method which results in an error
occurring will cause the PerlMaple to effectively do a
-C<carp("PerlMaple error: ", $self->error, " when evaluating \"$exp\"";)>.
+C<< carp("PerlMaple error: ", $self->error, " when evaluating \"$exp\"";) >>.
Any warnings from the Maple kernel will also be sent to stderr via carp
if PrintError is on.
@@ -344,7 +344,7 @@ The RaiseError attribute can be used to force errors to raise exceptions
rather than simply return error codes in the normal way. It is ``off''
(say, a false value in Perl) by default. When set ``on'', any method
which results in an error will cause the PerlMaple to effectively do a
-C<croak("PerlMaple error: ", $self->error, " when evaluating \"$exp\"";)>.
+C<< croak("PerlMaple error: ", $self->error, " when evaluating \"$exp\"";) >>.
If you turn RaiseError on then you'd normally turn PrintError off.
If PrintError is also on, then the PrintError is done first (naturally).