summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Landgren <david@landgren.net>2007-10-23 23:43:29 +0200
committerH.Merijn Brand <h.m.brand@xs4all.nl>2007-10-24 06:26:16 +0000
commitbc1e993dda803ed122ed39c3750d052e692153e5 (patch)
tree2c8022c4acb28b1a39ecc9d36a412ebdb2731933
parent463bdbaf2367b6452a2bbeef256dff834d61429e (diff)
downloadperl-bc1e993dda803ed122ed39c3750d052e692153e5.tar.gz
documentation typo for Text::Wrap
Message-ID: <471E4EE1.5010500@landgren.net> p4raw-id: //depot/perl@32182
-rw-r--r--lib/Text/Wrap.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Text/Wrap.pm b/lib/Text/Wrap.pm
index 4d2b8e88ce..4f41acf9ee 100644
--- a/lib/Text/Wrap.pm
+++ b/lib/Text/Wrap.pm
@@ -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);