From e27258dd10182fef164dc471ac12522163baa5a7 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Thu, 20 Oct 2022 10:26:42 +0100 Subject: [PATCH] stop -> stops --- docs/source/console.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/console.rst b/docs/source/console.rst index f2d6d42f..5c0aeb32 100644 --- a/docs/source/console.rst +++ b/docs/source/console.rst @@ -122,7 +122,7 @@ Rich can display a status message with a 'spinner' animation that won't interfer 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..."): do_work()