summaryrefslogtreecommitdiff
path: root/lib/Exporter.pm
diff options
context:
space:
mode:
authorE. Choroba <choroba@weed.(none)>2012-06-24 22:28:29 +0200
committerFather Chrysostomos <sprout@cpan.org>2012-06-24 14:13:13 -0700
commit9dcb3660aa0c83524ef40a4d6552c2fa02b6f514 (patch)
tree62d3db052f0de1d6599b4184fe0343feca866e1e /lib/Exporter.pm
parentfc89ca81c572f93dce57546c3a9184f6afcf251b (diff)
downloadperl-9dcb3660aa0c83524ef40a4d6552c2fa02b6f514.tar.gz
Fix Exporter.pm documentation: Notes are not code.
Diffstat (limited to 'lib/Exporter.pm')
-rw-r--r--lib/Exporter.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Exporter.pm b/lib/Exporter.pm
index 2c4e451449..2b75fd93b2 100644
--- a/lib/Exporter.pm
+++ b/lib/Exporter.pm
@@ -238,8 +238,9 @@ e.g., F<Module.pm> defines:
@EXPORT_OK = qw(B1 B2 B3 B4 B5);
%EXPORT_TAGS = (T1 => [qw(A1 A2 B1 B2)], T2 => [qw(A1 A2 B3 B4)]);
- Note that you cannot use tags in @EXPORT or @EXPORT_OK.
- Names in EXPORT_TAGS must also appear in @EXPORT or @EXPORT_OK.
+Note that you cannot use tags in @EXPORT or @EXPORT_OK.
+
+Names in EXPORT_TAGS must also appear in @EXPORT or @EXPORT_OK.
An application using Module can say something like: