Fix some checkpod complaints.
Steve Peters [Mon, 3 Mar 2008 19:20:12 +0000 (19:20 +0000)]
p4raw-id: //depot/perl@33423

pod/perlfaq2.pod
pod/perlfaq5.pod

index c9a0ec1..6b4d3da 100644 (file)
@@ -408,7 +408,7 @@ Recommended books on (or mostly on) Perl follow.
        by Richard Foley with Andy Lester
        ISBN 1-59059-454-1 [1st edition July 2005]
        http://www.apress.com/book/view/1590594541
-       
+
 =back
 
 =head2 Which magazines have Perl content?
index 821664d..e6c1dcc 100644 (file)
@@ -60,7 +60,7 @@ C<autoflush>. Call the C<flush> method to flush the buffer yourself:
        open my( $printer ), ">", "/dev/printer"); 
        $printer->flush; # one time flush
 
-       
+
 =head2 How do I change, delete, or insert a line in a file, or append to the beginning of a file?
 X<file, editing>
 
@@ -541,7 +541,7 @@ a string:
 
 With older versions of Perl, the C<IO::String> module provides similar
 functionality.
-    
+
 =head2 How can I output my numbers with commas added?
 X<number, commify>