diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-02-14 01:14:15 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-02-14 01:14:15 (GMT) |
commit | a2ecabe420b022ab26e6a87c3e6e1619f99d9b81 (patch) | |
tree | 04e950fa6f97b92cb0b760ccd95d36c9ce134c49 /Lib/textwrap.py | |
parent | c07fb2fc5bcb21a3dcbb0abbf3b52bab725cbce9 (diff) | |
download | cpython-a2ecabe420b022ab26e6a87c3e6e1619f99d9b81.zip cpython-a2ecabe420b022ab26e6a87c3e6e1619f99d9b81.tar.gz cpython-a2ecabe420b022ab26e6a87c3e6e1619f99d9b81.tar.bz2 |
Fix docstring typo
Diffstat (limited to 'Lib/textwrap.py')
-rw-r--r-- | Lib/textwrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/textwrap.py b/Lib/textwrap.py index c8a1dac..03fcbc0 100644 --- a/Lib/textwrap.py +++ b/Lib/textwrap.py @@ -53,7 +53,7 @@ class TextWrapper: single space! fix_sentence_endings (default: false) Ensure that sentence-ending punctuation is always followed - by two spaces. Off by default becaus the algorithm is + by two spaces. Off by default because the algorithm is (unavoidably) imperfect. break_long_words (default: true) Break words longer than 'width'. If false, those words will not |