]> git.vpit.fr Git - perl/modules/CPANPLUS-Dist-Gentoo.git/blobdiff - lib/CPANPLUS/Dist/Gentoo/Version.pm
POD typos
[perl/modules/CPANPLUS-Dist-Gentoo.git] / lib / CPANPLUS / Dist / Gentoo / Version.pm
index bce74eadd906bac4f472bf34817035d8a1016682..8d70ee6501d6ec65aea44ef10a863ed4d55fe5d5 100644 (file)
@@ -9,11 +9,11 @@ CPANPLUS::Dist::Gentoo::Version - Gentoo version object.
 
 =head1 VERSION
 
-Version 0.10
+Version 0.11
 
 =cut
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 =head1 DESCRIPTION
 
@@ -33,7 +33,7 @@ my $positive_int_rx = qr/0*[1-9][0-9]*/;
 my $letter_rx       = qr/[a-zA-Z]/;
 my $dotted_num_rx   = qr/$int_rx(?:\.$int_rx)*/o;
 
-my @suffixes  = qw(alpha beta pre rc normal p);
+my @suffixes  = qw<alpha beta pre rc normal p>;
 my $suffix_rx = join '|', grep !/^normal$/, @suffixes;
 $suffix_rx    = qr/(?:$suffix_rx)/o;
 
@@ -86,7 +86,7 @@ sub new {
 
 my @parts;
 BEGIN {
- @parts = qw/version letter suffixes revision/;
+ @parts = qw<version letter suffixes revision>;
  eval "sub $_ { \$_[0]->{$_} }" for @parts;
 }
 
@@ -188,7 +188,7 @@ sub _stringify {
 
 =pod
 
-This class provides overloaded methods for numerical comparison and strigification.
+This class provides overloaded methods for numerical comparison and stringification.
 
 =head1 SEE ALSO