diff --git a/docs/manual/algorithms/centralities.html b/docs/manual/algorithms/centralities.html
index 5ae1322..ab49d93 100644
--- a/docs/manual/algorithms/centralities.html
+++ b/docs/manual/algorithms/centralities.html
@@ -600,7 +600,7 @@
pathpy.algorithms.centralities module
Parameters
----------
- network: Netwokr
+ network: Network
alpha: float
damping factor
max_iter: int
@@ -987,7 +987,7 @@ Returns
Calculates the PageRank of nodes based on a power iteration.
Parameters
-network : Netwokr
+network : Network
-
alpha : float
- damping factor
@@ -1008,7 +1008,7 @@ Returns
Parameters
----------
- network: Netwokr
+ network: Network
alpha: float
damping factor
max_iter: int
diff --git a/pathpy/algorithms/centralities.py b/pathpy/algorithms/centralities.py
index 17d19d2..41399ca 100644
--- a/pathpy/algorithms/centralities.py
+++ b/pathpy/algorithms/centralities.py
@@ -575,7 +575,7 @@ def pagerank(network, alpha=0.85, max_iter=100, tol=1.0e-6, weighted=False):
Parameters
----------
- network: Netwokr
+ network: Network
alpha: float
damping factor
max_iter: int