documentation typo for Text::Wrap
David Landgren [Tue, 23 Oct 2007 21:43:29 +0000 (23:43 +0200)]
Message-ID: <471E4EE1.5010500@landgren.net>

p4raw-id: //depot/perl@32182

lib/Text/Wrap.pm

index 4d2b8e8..4f41acf 100644 (file)
@@ -122,7 +122,7 @@ Text::Wrap - line wrapping to form simple paragraphs
 
 B<Example 1>
 
-       use Text::Wrap
+       use Text::Wrap;
 
        $initial_tab = "\t";    # Tab before first line
        $subsequent_tab = "";   # All other lines flush left
@@ -145,7 +145,7 @@ B<Example 2>
 
 B<Example 3>
        
-       use Text::Wrap
+       use Text::Wrap;
 
        $Text::Wrap::columns = 72;
        print wrap('', '', @text);