diff --git a/nbs/core.ipynb b/nbs/core.ipynb
index 2e68d546b..fb9ef3aac 100644
--- a/nbs/core.ipynb
+++ b/nbs/core.ipynb
@@ -826,7 +826,7 @@
" `n_jobs`: int, number of jobs used in the parallel processing, use -1 for all cores.
\n",
" `sort_df`: bool, if True, sort `df` by [`unique_id`,`ds`].
\n",
" `fallback_model`: Any, Model to be used if a model fails. Only works with the `forecast` method.
\n",
- " `verbose`: bool, Whether print progress bar. Only used when `n_jobs=1`.
\n",
+ " `verbose`: bool, Prints TQDM progress bar when `n_jobs=1`.
\n",
"\n",
" **Notes:**
\n",
" The `core.StatsForecast` class offers parallelization utilities with Dask, Spark and Ray back-ends.
\n",
diff --git a/statsforecast/core.py b/statsforecast/core.py
index 8a6fe4f50..a4f6f5132 100644
--- a/statsforecast/core.py
+++ b/statsforecast/core.py
@@ -346,7 +346,7 @@ def __init__(
`n_jobs`: int, number of jobs used in the parallel processing, use -1 for all cores.
`sort_df`: bool, if True, sort `df` by [`unique_id`,`ds`].
`fallback_model`: Any, Model to be used if a model fails. Only works with the `forecast` method.
- `verbose`: bool, Whether print progress bar. Only used when `n_jobs=1`.
+ `verbose`: bool, Prints TQDM progress bar when `n_jobs=1`.
**Notes:**
The `core.StatsForecast` class offers parallelization utilities with Dask, Spark and Ray back-ends.