summaryrefslogtreecommitdiff
path: root/dist/Exporter
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2018-03-29 18:31:14 -0400
committerJames E Keenan <jkeenan@cpan.org>2018-03-29 18:31:19 -0400
commit520aba9828daf9fa3303b933f477053b4742dc90 (patch)
tree76ded058599035d67f82098ebdfb39fecab49132 /dist/Exporter
parentee483bcc6527f06545fd67f1a3ca6dc07e36882d (diff)
downloadperl-520aba9828daf9fa3303b933f477053b4742dc90.tar.gz
Remove 'our' from one non-Exporter-related variable.
Diffstat (limited to 'dist/Exporter')
-rw-r--r--dist/Exporter/lib/Exporter.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/Exporter/lib/Exporter.pm b/dist/Exporter/lib/Exporter.pm
index f9ccd26653..0e8775db25 100644
--- a/dist/Exporter/lib/Exporter.pm
+++ b/dist/Exporter/lib/Exporter.pm
@@ -354,7 +354,7 @@ will give the module an opportunity to handle the situation before
generating an error. The Exporter will call an export_fail method
with a list of the failed symbols:
- our @failed_symbols = $module_name->export_fail(@failed_symbols);
+ @failed_symbols = $module_name->export_fail(@failed_symbols);
If the C<export_fail> method returns an empty list then no error is
recorded and all the requested symbols are exported. If the returned