fix typo in docs

This commit is contained in:
Goichi Iisaka 2020-12-19 08:13:34 +09:00
parent 0ea2d45a95
commit 7ae55ac2ee
2 changed files with 4 additions and 4 deletions

View File

@ -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("Description")
table.add_column("Level") 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): for row in range(12):
live.console.print("Working on row #{row}") live.console.print("Working on row #{row}")
time.sleep(0.4) time.sleep(0.4)

View File

@ -55,9 +55,9 @@ The :class:`~rich.table.Table` class offers a number of configuration options to
Adding columns 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:: 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( table = Table(
"Released", "Released",
"Title", "Title",
Column(header="Box Office", align="right"), Column(header="Box Office", justify="right"),
title="Star Wars Movies" title="Star Wars Movies"
) )