diff --git a/rich/progress.py b/rich/progress.py index 22c9401f2..8db3bb727 100644 --- a/rich/progress.py +++ b/rich/progress.py @@ -518,7 +518,7 @@ class Progress(JupyterMixin, RenderHook): refresh_per_second (Optional[int], optional): Number of times per second to refresh the progress information or None to use default (10). Defaults to None. speed_estimate_period: (float, optional): Period (in seconds) used to calculate the speed estimate. Defaults to 30. transient: (bool, optional): Clear the progress on exit. Defaults to False. - redirect_stout: (bool, optional): Enable redirection of stdout, so ``print`` may be used. Defaults to True. + redirect_stdout: (bool, optional): Enable redirection of stdout, so ``print`` may be used. Defaults to True. redirect_stderr: (bool, optional): Enable redirection of stderr. Defaults to True. get_time: (Callable, optional): A callable that gets the current time, or None to use time.monotonic. Defaults to None. """