summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancesco Andreuzzi <andreuzzi.francesco@gmail.com>2021-04-04 19:46:09 +0200
committerGitHub <noreply@github.com>2021-04-04 13:46:09 -0400
commitead0e65bda59862e329f2e6f1da47919c6b07ca9 (patch)
tree0688498cff3eaff7df776edec47966d36a06e62d
parent80b1afa2ae50314a8312998c214a8c1a356adcf1 (diff)
downloadnetworkx-ead0e65bda59862e329f2e6f1da47919c6b07ca9.tar.gz
fix typo (#4724)
-rw-r--r--networkx/algorithms/components/strongly_connected.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/networkx/algorithms/components/strongly_connected.py b/networkx/algorithms/components/strongly_connected.py
index 5167eb83..46936c57 100644
--- a/networkx/algorithms/components/strongly_connected.py
+++ b/networkx/algorithms/components/strongly_connected.py
@@ -121,7 +121,7 @@ def kosaraju_strongly_connected_components(G, source=None):
Returns
-------
comp : generator of sets
- A genrator of sets of nodes, one for each strongly connected
+ A generator of sets of nodes, one for each strongly connected
component of G.
Raises