summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorysitu <ysitu@users.noreply.github.com>2014-07-15 15:35:39 -0400
committerysitu <ysitu@users.noreply.github.com>2014-07-15 15:50:51 -0400
commitf6f5b2b1f7ef51b86589168bff3f1a5c6222d88d (patch)
tree11455a92dd21d4ff46732abe5e1f18c32ffe0b51
parentef37001c97f83d39e8e9998a8f7d1d6db75b1e0b (diff)
downloadnetworkx-f6f5b2b1f7ef51b86589168bff3f1a5c6222d88d.tar.gz
Fix kosaraju_strongly_connected_components documentation
The output is no longer ordered in a specific way.
-rw-r--r--networkx/algorithms/components/strongly_connected.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/networkx/algorithms/components/strongly_connected.py b/networkx/algorithms/components/strongly_connected.py
index ce65f661..cfd95edf 100644
--- a/networkx/algorithms/components/strongly_connected.py
+++ b/networkx/algorithms/components/strongly_connected.py
@@ -112,11 +112,10 @@ def kosaraju_strongly_connected_components(G,source=None):
-------
comp : generator of lists
A list of nodes for each component of G.
- The list is ordered from largest connected component to smallest.
Raises
------
- NetworkXNotImplemented: If G is undirected
+ NetworkXNotImplemented: If G is undirected.
See Also
--------