text writer: docstring proofreading

This commit is contained in:
Georg Brandl 2013-03-29 12:38:57 +01:00
parent fddb492044
commit 2b5a1476c8

View File

@ -32,8 +32,8 @@ class TextWrapper(textwrap.TextWrapper):
def _wrap_chunks(self, chunks):
"""_wrap_chunks(chunks : [string]) -> [string]
Original _wrap_chunks use len() to calculate width.
This method respect to wide/fullwidth characters for width adjustment.
The original _wrap_chunks uses len() to calculate width.
This method respects wide/fullwidth characters for width adjustment.
"""
drop_whitespace = getattr(self, 'drop_whitespace', True) #py25 compat
lines = []