Skip to content

Commit

Permalink
Improve wording in a docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Nov 7, 2023
1 parent b44fd1b commit 6fd3734
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rich/containers.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from itertools import zip_longest
from typing import (
Iterator,
TYPE_CHECKING,
Iterable,
Iterator,
List,
Optional,
TypeVar,
Union,
overload,
TypeVar,
TYPE_CHECKING,
)

if TYPE_CHECKING:
Expand Down Expand Up @@ -119,7 +119,7 @@ def justify(
Args:
console (Console): Console instance.
width (int): Number of characters per line.
width (int): Number of cells available per line.
justify (str, optional): Default justify method for text: "left", "center", "full" or "right". Defaults to "left".
overflow (str, optional): Default overflow for text: "crop", "fold", or "ellipsis". Defaults to "fold".
Expand Down

0 comments on commit 6fd3734

Please sign in to comment.