This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix typo introduced in 4c38808d92b95.
[perl5.git] / lib / English.pm
index f629068..6560f5f 100644 (file)
@@ -1,6 +1,6 @@
 package English;
 
-our $VERSION = '1.06';
+our $VERSION = '1.08';
 
 require Exporter;
 @ISA = qw(Exporter);
@@ -12,8 +12,9 @@ English - use nice English (or awk) names for ugly punctuation variables
 =head1 SYNOPSIS
 
     use English;
-    use English qw( -no_match_vars ) ;  # Avoids regex performance penalty
-                                        # in perl 5.16 and earlier
+    use English qw( -no_match_vars ) ;  # Avoids regex performance
+                                        # penalty in perl 5.16 and
+                                        # earlier
     ...
     if ($ERRNO =~ /denied/) { ... }
 
@@ -33,9 +34,9 @@ See L<perlvar> for a complete list of these.
 
 =head1 PERFORMANCE
 
-NOTE: This was fixed in perl 5.18.  Mentioning these three variables no
+NOTE: This was fixed in perl 5.20.  Mentioning these three variables no
 longer makes a speed difference.  This section still applies if your code
-is to run on perl 5.16 or earlier.
+is to run on perl 5.18 or earlier.
 
 This module can provoke sizeable inefficiencies for regular expressions,
 due to unfortunate implementation details.  If performance matters in