summaryrefslogtreecommitdiff
path: root/dist/Exporter
diff options
context:
space:
mode:
authorTodd Rinaldo <toddr@cpan.org>2014-04-13 21:37:42 -0500
committerJames E Keenan <jkeenan@cpan.org>2014-05-31 03:04:43 +0200
commit2fe8fc108913dacf62b158841e6611c1679c6ab1 (patch)
tree23e3a2933e3a5de7d3411cb55edbaa0dd5ab6988 /dist/Exporter
parent893ef8be9f45dd692c68d41339f2da7a26431833 (diff)
downloadperl-2fe8fc108913dacf62b158841e6611c1679c6ab1.tar.gz
Correct illegal use of >> in Exporter POD.
Discovered during POD unit tests on release of 5.70 to CPAN. Also correct AUTHORS and checkAUTHORS.PL email to toddr@cpan.org. Bump Exporter $VERSION to 5.71.
Diffstat (limited to 'dist/Exporter')
-rw-r--r--dist/Exporter/lib/Exporter.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/Exporter/lib/Exporter.pm b/dist/Exporter/lib/Exporter.pm
index d77a93df77..bc72c51c4b 100644
--- a/dist/Exporter/lib/Exporter.pm
+++ b/dist/Exporter/lib/Exporter.pm
@@ -9,7 +9,7 @@ require 5.006;
our $Debug = 0;
our $ExportLevel = 0;
our $Verbose ||= 0;
-our $VERSION = '5.70';
+our $VERSION = '5.71';
our (%Cache);
sub as_heavy {
@@ -163,7 +163,7 @@ try to use C<@EXPORT_OK> in preference to C<@EXPORT> and avoid short or
common symbol names to reduce the risk of name clashes.
Generally anything not exported is still accessible from outside the
-module using the C<YourModule::item_name> (or C<< $blessed_ref->method>>)
+module using the C<YourModule::item_name> (or C<< $blessed_ref->method >>)
syntax. By convention you can use a leading underscore on names to
informally indicate that they are 'internal' and not for public use.