diff --git a/docs/source/devguide/index.rst b/docs/source/devguide/index.rst
index 064f770d3..734ceea43 100644
--- a/docs/source/devguide/index.rst
+++ b/docs/source/devguide/index.rst
@@ -1,3 +1,5 @@
+.. _developers_guide:
+
=================
Developer's Guide
=================
diff --git a/docs/source/userguide/beginners_guide.rst b/docs/source/userguide/beginners_guide.rst
index ec5886a8e..8020a670c 100644
--- a/docs/source/userguide/beginners_guide.rst
+++ b/docs/source/userguide/beginners_guide.rst
@@ -10,7 +10,7 @@ To make the most out of FESTIM, a basic knowledge of `Python `_ or `Conda `_.
-FESTIM is under version control with `git `_. Even though users don't need git to install FESTIM, it is convenient to have a basic understanding of how it works. You can fin `git turorials `_ to help you getting started. The `FESTIM source code `_ is hosted on GitHub. It is recommended to sign up for free to GitHub in order to receive the latest updates, follow the development and submit `bug reports `_.
+FESTIM is under version control with `git `_. Even though users don't need git to install FESTIM, it is convenient to have a basic understanding of how it works. You can find `git tutorials `_ to help you getting started. The `FESTIM source code `_ is hosted on GitHub. Git knowledge and a GitHub account is required to open issues and :ref:`contribute to the code `.
----------------------
Where can I find help?
diff --git a/src/festim/hydrogen_transport_problem.py b/src/festim/hydrogen_transport_problem.py
index 43395abfc..c0077efcf 100644
--- a/src/festim/hydrogen_transport_problem.py
+++ b/src/festim/hydrogen_transport_problem.py
@@ -47,7 +47,6 @@ class HydrogenTransportProblem(problem.ProblemBase):
sources: The hydrogen sources
initial_conditions: The initial conditions
boundary_conditions: The boundary conditions
- solver_parameters (dict): the solver parameters of the model
exports (list of festim.Export): the exports of the model
traps (list of F.Trap): the traps of the model
@@ -60,7 +59,6 @@ class HydrogenTransportProblem(problem.ProblemBase):
sources: The hydrogen sources
initial_conditions: The initial conditions
boundary_conditions: List of Dirichlet boundary conditions
- solver_parameters (dict): the solver parameters
exports (list of festim.Export): the export
traps (list of F.Trap): the traps of the model
dx (dolfinx.fem.dx): the volume measure of the model
diff --git a/src/festim/problem.py b/src/festim/problem.py
index ff4b36c26..d1066ef79 100644
--- a/src/festim/problem.py
+++ b/src/festim/problem.py
@@ -154,6 +154,7 @@ def run(self):
self.iterate()
if self.show_progress_bar:
self.progress_bar.refresh() # refresh progress bar to show 100%
+ self.progress_bar.close()
else:
# Solve steady-state
self.solver.solve(self.u)