Skip to content

Commit

Permalink
WIP: Try in see also instead of full func paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
rossbar committed Sep 19, 2024
1 parent fd03e2a commit 3a9d2ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions networkx/algorithms/shortest_paths/unweighted.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ def single_source_shortest_path_length(G, source, cutoff=None):
See Also
--------
:func:`~networkx.algorithms.shortest_paths.generic.shortest_path_length` :
:any:`shortest_path_length` :
Shortest path length with specifiable source, target, and weight.
:func:`~networkx.algorithms.shortest_paths.weighted.single_source_dijkstra_path_length` :
:any:`single_source_dijkstra_path_length` :
Shortest weighted path length from source with Dijkstra algorithm.
:func:`~networkx.algorithms.shortest_paths.weighted.single_source_bellman_ford_path_length` :
:any:`single_source_bellman_ford_path_length` :
Shortest weighted path length from source with Bellman-Ford algorithm.
"""
if source not in G:
Expand Down

0 comments on commit 3a9d2ae

Please sign in to comment.