From 2b5a1476c88e5464f385247c381d9f782ba693e4 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 12:38:57 +0100 Subject: [PATCH] text writer: docstring proofreading --- sphinx/writers/text.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/writers/text.py b/sphinx/writers/text.py index 14d7c9522..d2c2fcba8 100644 --- a/sphinx/writers/text.py +++ b/sphinx/writers/text.py @@ -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 = []