summaryrefslogtreecommitdiff
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
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.
-rw-r--r--AUTHORS2
-rwxr-xr-xPorting/checkAUTHORS.pl2
-rw-r--r--dist/Exporter/lib/Exporter.pm4
3 files changed, 4 insertions, 4 deletions
diff --git a/AUTHORS b/AUTHORS
index bdc55292c5..0ff31c1cae 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1153,7 +1153,7 @@ Tkil <tkil@reptile.scrye.com>
Tobias Leich <email@froggs.de>
Toby Inkster <mail@tobyinkster.co.uk>
Todd C. Miller <Todd.Miller@courtesan.com>
-Todd Rinaldo <toddr@cpanel.net>
+Todd Rinaldo <toddr@cpan.org>
Todd T. Fries <todd@fries.int.mrleng.com>
Todd Vierling <tv@duh.org>
Tokuhiro Matsuno <tokuhirom@gmail.com>
diff --git a/Porting/checkAUTHORS.pl b/Porting/checkAUTHORS.pl
index 93353e1c70..431ddb9822 100755
--- a/Porting/checkAUTHORS.pl
+++ b/Porting/checkAUTHORS.pl
@@ -910,7 +910,7 @@ thomas.dorner\100start.de tdorner\100amadeus.net
tjenness\100cpan.org t.jenness\100jach.hawaii.edu
+ timj\100jach.hawaii.edu
tobez\100tobez.org tobez\100plab.ku.dk
-toddr\100cpanel.net toddr\100cpan.org
+toddr\100cpan.org toddr\100cpanel.net
tom\100compton.nu thh\100cyberscience.com
tom.horsley\100mail.ccur.com tom.horsley\100ccur.com
+ tom\100amber.ssd.hcsc.com
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.