From 7ae55ac2eea6aab27d9c5c141104ed3d406b9748 Mon Sep 17 00:00:00 2001 From: Goichi Iisaka Date: Sat, 19 Dec 2020 08:13:34 +0900 Subject: [PATCH] fix typo in docs --- docs/source/live.rst | 2 +- docs/source/tables.rst | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/live.rst b/docs/source/live.rst index f1d6bb4a..3a802efd 100644 --- a/docs/source/live.rst +++ b/docs/source/live.rst @@ -138,7 +138,7 @@ The Live class will create an internal Console object which you can access via ` table.add_column("Description") table.add_column("Level") - with Live(table, refresh_per_second=4): # update 4 times a second to feel fluid + with Live(table, refresh_per_second=4) as live: # update 4 times a second to feel fluid for row in range(12): live.console.print("Working on row #{row}") time.sleep(0.4) diff --git a/docs/source/tables.rst b/docs/source/tables.rst index ec946e6e..ac5e3d4d 100644 --- a/docs/source/tables.rst +++ b/docs/source/tables.rst @@ -55,9 +55,9 @@ The :class:`~rich.table.Table` class offers a number of configuration options to Adding columns ~~~~~~~~~~~~~~ -You may also add columns by specifying them in the positional arguments of the :class:`~rich.table.Table` constructor. For example, we could construct a table with three columns like this:: +You may also add columns by specifying them in the positional arguments of the :class:`~rich.table.Table` constructor. For example, we could construct a table with three columns like this:: - table = Table("Released", "Title", "Box Office", title="Star Wars Movies") + table = Table("Released", "Title", "Box Office", title="Star Wars Movies") This allows you to specify the text of the column only. If you want to set other attributes, such as width and style, you can add an :class:`~rich.table.Column` class. Here's an example:: @@ -65,7 +65,7 @@ This allows you to specify the text of the column only. If you want to set other table = Table( "Released", "Title", - Column(header="Box Office", align="right"), + Column(header="Box Office", justify="right"), title="Star Wars Movies" )