stop -> stops

This commit is contained in:
Dave Pearson 2022-10-20 10:26:42 +01:00
parent 74c5d2d6d0
commit e27258dd10
No known key found for this signature in database
GPG Key ID: B413E0EF113D4ABF
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ Rich can display a status message with a 'spinner' animation that won't interfer
python -m rich.status python -m rich.status
To display a status message, call :meth:`~rich.console.Console.status` with the status message (which may be a string, Text, or other renderable). The result is a context manager which starts and stop the status display around a block of code. Here's an example:: To display a status message, call :meth:`~rich.console.Console.status` with the status message (which may be a string, Text, or other renderable). The result is a context manager which starts and stops the status display around a block of code. Here's an example::
with console.status("Working..."): with console.status("Working..."):
do_work() do_work()