From 440c660d1f96f1862664fd829c2e25fea096125c Mon Sep 17 00:00:00 2001 From: akettmann-e24 <50422880+akettmann-e24@users.noreply.github.com> Date: Thu, 31 Mar 2022 12:58:23 -0500 Subject: [PATCH] typo fix --- rich/layout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rich/layout.py b/rich/layout.py index 918e631c2..2030c0401 100644 --- a/rich/layout.py +++ b/rich/layout.py @@ -300,7 +300,7 @@ def add_split(self, *layouts: Union["Layout", RenderableType]) -> None: self._children.extend(_layouts) def split_row(self, *layouts: Union["Layout", RenderableType]) -> None: - """Split the layout in tow a row (Layouts side by side). + """Split the layout in to a row (layouts side by side). Args: *layouts (Layout): Positional arguments should be (sub) Layout instances.