diff options
author | David Landgren <david@landgren.net> | 2007-10-23 23:43:29 +0200 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2007-10-24 06:26:16 +0000 |
commit | bc1e993dda803ed122ed39c3750d052e692153e5 (patch) | |
tree | 2c8022c4acb28b1a39ecc9d36a412ebdb2731933 /lib/Text | |
parent | 463bdbaf2367b6452a2bbeef256dff834d61429e (diff) | |
download | perl-bc1e993dda803ed122ed39c3750d052e692153e5.tar.gz |
documentation typo for Text::Wrap
Message-ID: <471E4EE1.5010500@landgren.net>
p4raw-id: //depot/perl@32182
Diffstat (limited to 'lib/Text')
-rw-r--r-- | lib/Text/Wrap.pm | 4 |
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); |