diff options
author | Abigail <abigail@abigail.be> | 1999-01-06 17:21:32 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-01-07 09:08:36 +0000 |
commit | 8dcee03ef4ed12141a63dec75da7d736915e7be4 (patch) | |
tree | 67f422ae94042a2a897c17a46d52d83dfe3a9281 /lib/Text | |
parent | 5e985ccb892ad7073a08ce8fc45550f2b84c4230 (diff) | |
download | perl-8dcee03ef4ed12141a63dec75da7d736915e7be4.tar.gz |
Another set of doc patches from Abigail
Message-ID: <19990107032132.20124.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRAIL2 lib/Net/hostent.pm] Typo fix
Date: Wed, 6 Jan 1999 22:21:32 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107032445.20178.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRIAL2 lib/Net/netent.pm] Typo fix
Date: Wed, 6 Jan 1999 22:24:45 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107032834.20362.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRAIL2 lib/Term/Complete.pm] Typo fix
Date: Wed, 6 Jan 1999 22:28:34 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107033136.20440.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRAIL2 lib/Term/ReadLine.pm] Typo fix
Date: Wed, 6 Jan 1999 22:31:36 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107033351.20540.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRIAL2 lib/CGI/Apache.pm] Typo fix
Date: Wed, 6 Jan 1999 22:33:51 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107033933.20707.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRIAL2 lib/CGI/Push.pm] Typo fix
Date: Wed, 6 Jan 1999 22:39:33 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107034548.20936.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRIAL2 lib/File/Copy.pm] Typo fixes
Date: Wed, 6 Jan 1999 22:45:48 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107034856.21056.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRIAL2 lib/File/Spec.pm] Typo fix
Date: Wed, 6 Jan 1999 22:48:56 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107035113.21174.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRIAL2 lib/File/Spec/Mac.pm] Typo fixes
Date: Wed, 6 Jan 1999 22:51:13 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107035612.21522.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRIAL2 lib/Math/BigFloat.pm] Typo fix
Date: Wed, 6 Jan 1999 22:56:12 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107035842.21585.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRIAL2 lib/Math/BigInt.pm] Typo fixes
Date: Wed, 6 Jan 1999 22:58:41 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107040644.22009.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRIAL2 lib/Text/Wrap.pm] Typo fixes
Date: Wed, 6 Jan 1999 23:06:44 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107040955.22087.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRIAL2 lib/Tie/Array.pm] Typo fixes
Date: Wed, 6 Jan 1999 23:09:55 -0500 (EST)
From: abigail@fnx.com
Message-ID: <19990107041136.22174.qmail@alexandra.wayne.fnx.com>
Subject: [PATCH 5.005_03 TRIAL2 lib/Tie/Hash.pm] Typo fix
Date: Wed, 6 Jan 1999 23:11:36 -0500 (EST)
p4raw-id: //depot/cfgperl@2579
Diffstat (limited to 'lib/Text')
-rw-r--r-- | lib/Text/Wrap.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Text/Wrap.pm b/lib/Text/Wrap.pm index 046dfaee33..5f95edb69c 100644 --- a/lib/Text/Wrap.pm +++ b/lib/Text/Wrap.pm @@ -102,9 +102,9 @@ Text::Wrap - line wrapping to form simple paragraphs =head1 DESCRIPTION Text::Wrap::wrap() is a very simple paragraph formatter. It formats a -single paragraph at a time by breaking lines at word boundries. +single paragraph at a time by breaking lines at word boundaries. Indentation is controlled for the first line ($initial_tab) and -all subsquent lines ($subsequent_tab) independently. +all subsequent lines ($subsequent_tab) independently. Lines are wrapped at $Text::Wrap::columns columns. $Text::Wrap::columns should be set to the full width of your output device. @@ -116,7 +116,7 @@ To restore the old (dying) behavior, set $Text::Wrap::huge to Text::Wrap::fill() is a simple multi-paragraph formatter. It formats each paragraph separately and then joins them together when it's done. It -will destory any whitespace in the original text. It breaks text into +will destroy any whitespace in the original text. It breaks text into paragraphs by looking for whitespace after a newline. In other respects it acts like wrap(). |