This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Assorted POD nits from the Debian bug list.
authorSteve Peters <steve@fisharerojo.org>
Wed, 30 Jan 2008 17:11:53 +0000 (17:11 +0000)
committerSteve Peters <steve@fisharerojo.org>
Wed, 30 Jan 2008 17:11:53 +0000 (17:11 +0000)
p4raw-id: //depot/perl@33129

lib/CGI.pm
lib/Math/BigInt/CalcEmu.pm
pod/perllol.pod
pod/perlre.pod

index f6fe9c9..a66f60d 100644 (file)
@@ -4125,6 +4125,8 @@ CGI - Simple Common Gateway Interface Class
             hr;
    }
 
+   print end_html;
+
 =head1 ABSTRACT
 
 This perl library uses perl5 objects to make it easy to create Web
@@ -5418,7 +5420,7 @@ Generate just the protocol and net location, as in http://www.foo.com:8000
 If Apache's mod_rewrite is turned on, then the script name and path
 info probably won't match the request that the user sent. Set
 -rewrite=>1 (default) to return URLs that match what the user sent
-(the original request URI). Set -rewrite->0 to return URLs that match
+(the original request URI). Set -rewrite=>0 to return URLs that match
 the URL after mod_rewrite's rules have run. Because the additional
 path information only makes sense in the context of the rewritten URL,
 -rewrite is set to false when you request path info in the URL.
index 79efac6..5810f5d 100644 (file)
@@ -295,7 +295,7 @@ Math::BigInt::CalcEmu - Emulate low-level math with BigInt code
 =head1 DESCRIPTION
 
 Contains routines that emulate low-level math functions in BigInt, e.g.
-optional routines the low-level math package does not provide on it's own.
+optional routines the low-level math package does not provide on its own.
 
 Will be loaded on demand and called automatically by BigInt.
 
index c348ec4..c42c977 100644 (file)
@@ -276,7 +276,7 @@ have selected map for that
 
     @newAoA = map { [ @{ $AoA[$_] } [ 7..12 ] ] } 4 .. 8;
 
-Although if your manager accused of seeking job security (or rapid
+Although if your manager accused you of seeking job security (or rapid
 insecurity) through inscrutable code, it would be hard to argue. :-)
 If I were you, I'd put that in a function:
 
index c35b49f..04c7b8e 100644 (file)
@@ -102,7 +102,7 @@ X</x>
 
 =head3 Metacharacters
 
-The patterns used in Perl pattern matching evolved from the ones supplied in
+The patterns used in Perl pattern matching evolved from those supplied in
 the Version 8 regex routines.  (The routines are derived
 (distantly) from Henry Spencer's freely redistributable reimplementation
 of the V8 routines.)  See L<Version 8 Regular Expressions> for