summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Golden <dagolden@cpan.org>2010-01-20 07:13:11 -0500
committerDavid Golden <dagolden@cpan.org>2010-01-20 07:13:18 -0500
commita2bff36e3c50a471cb4481f58ae8a9285d3f17b9 (patch)
treec85273e5b7f6f7b45cfdd196e63ded9be740272d
parent7e2aafc2d3a9df94cef58c3a1cfc05a0fff2b4ef (diff)
downloadperl-a2bff36e3c50a471cb4481f58ae8a9285d3f17b9.tar.gz
perlfunc tweak for package NAME VERSION
-rw-r--r--pod/perlfunc.pod10
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 210aab4a4f..14582f5a9c 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -4186,11 +4186,11 @@ C<$main::sail> (as well as to C<$main'sail>, still seen in ancient
code, mostly from Perl 4).
If VERSION is provided, C<package> sets the C<$VERSION> variable in the given
-namespace. VERSION must be a "strict" style version number as defined by the
-L<version> module: a positive decimal number (integer or decimal-fraction)
-without exponentiation or else a dotted-decimal v-string with a leading 'v'
-character and at least three components. You should set C<$VERSION> only once
-per package.
+namespace to a L<version> object with the VERSION provided. VERSION must be a
+"strict" style version number as defined by the L<version> module: a positive
+decimal number (integer or decimal-fraction) without exponentiation or else a
+dotted-decimal v-string with a leading 'v' character and at least three
+components. You should set C<$VERSION> only once per package.
See L<perlmod/"Packages"> for more information about packages, modules,
and classes. See L<perlsub> for other scoping issues.