summaryrefslogtreecommitdiff
path: root/text_utils.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-05-31 18:00:09 -0700
committerScott Gasch <[email protected]>2022-05-31 18:00:09 -0700
commitec7c26dad2c26e4e4c33a69252654e3b1155bc7b (patch)
treee47187d4030ba562b866ba659864ac1305fe93dc /text_utils.py
parent02302bbd9363facb59c4df2c1f4013087702cfa6 (diff)
More docs cleanup.
Diffstat (limited to 'text_utils.py')
-rw-r--r--text_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/text_utils.py b/text_utils.py
index 66c0d22..3b28968 100644
--- a/text_utils.py
+++ b/text_utils.py
@@ -352,7 +352,7 @@ def justify_text(text: str, *, width: int = 80, alignment: str = "c", indent_by:
def generate_padded_columns(text: List[str]) -> Generator:
- """Given a list of strings, break them into columns using :meth:split
+ """Given a list of strings, break them into columns using :meth:`split`
and then compute the maximum width of each column. Finally,
distribute the columular chunks into the output padding each to
the proper width.