Skip to content

Commit 9fd0532

Browse files
authored
Fix typo in min_edge_cover docstring (#8075)
1 parent fc67a54 commit 9fd0532

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

networkx/algorithms/covering.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ def min_edge_cover(G, matching_algorithm=None):
6666
is bounded by the worst-case running time of the function
6767
``matching_algorithm``.
6868
69-
Minimum edge cover for `G` can also be found using the `min_edge_covering`
70-
function in :mod:`networkx.algorithms.bipartite.covering` which is
69+
Minimum edge cover for `G` can also be found using
70+
:func:`~networkx.algorithms.bipartite.covering.min_edge_covering` which is
7171
simply this function with a default matching algorithm of
72-
:func:`~networkx.algorithms.bipartite.matching.hopcraft_karp_matching`
72+
:func:`~networkx.algorithms.bipartite.matching.hopcroft_karp_matching`
7373
"""
7474
if len(G) == 0:
7575
return set()

0 commit comments

Comments
 (0)