summaryrefslogtreecommitdiff
path: root/pod/modpods/Exporter.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/modpods/Exporter.pod')
-rw-r--r--pod/modpods/Exporter.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/modpods/Exporter.pod b/pod/modpods/Exporter.pod
index 03e6a1c92d..050fafa4ba 100644
--- a/pod/modpods/Exporter.pod
+++ b/pod/modpods/Exporter.pod
@@ -4,7 +4,7 @@ Exporter - module to control namespace manipulations
import - import functions into callers namespace
-=head1 SYNOPSYS
+=head1 SYNOPSIS
package WhatEver;
require Exporter;
@@ -12,7 +12,7 @@ import - import functions into callers namespace
@EXPORT = qw(func1, $foo, %tabs);
@EXPORT_OK = qw(sin cos);
...
- use Whatever;
+ use WhatEver;
use WhatEver 'sin';
=head1 DESCRIPTION
@@ -22,7 +22,7 @@ control what they will export into their user's namespace.
The WhatEver module above has placed in its export list
the function C<func1()>, the scalar C<$foo>, and the
hash C<%tabs>. When someone decides to
-C<use WhatEver>, they get those identifier grafted
+C<use WhatEver>, they get those identifiers grafted
onto their own namespace. That means the user of
package whatever can use the function func1() instead
of fully qualifying it as WhatEver::func1().