From 8316834459e96eaac84f013961e132c8ef3d6715 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Fri, 16 Oct 2020 14:50:22 +0100 Subject: [PATCH] docs --- rich/console.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rich/console.py b/rich/console.py index 1044b9fa..87f51895 100644 --- a/rich/console.py +++ b/rich/console.py @@ -245,7 +245,7 @@ class RenderGroup: Args: renderables (Iterable[RenderableType]): An iterable of renderable objects. - fit (bool, optional): Use the longest constituent renderable as the group's minimum width if ``True``, otherwise expand the group to fit the availabe space. Defaults to True. + fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. """ def __init__(self, *renderables: "RenderableType", fit: bool = True) -> None: @@ -275,7 +275,7 @@ def render_group(fit: bool = True) -> Callable: """A decorator that turns an iterable of renderables in to a group. Args: - fit (bool, optional): Use the longest constituent renderable as the group's minimum width if ``True``, otherwise expand the group to fit the availabe space. Defaults to True. + fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. """ def decorator(method):