Skip to content

Commit

Permalink
src/graphs: Remove broken javadoc links to Constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlin1 committed Oct 17, 2022
1 parent af41c9f commit 4d7aaed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/graphs/ShortestPathSolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import java.util.List;

/**
* Single-source shortest paths from a start defined in {@link Constructor#run(Graph, V)} to all reachable vertices.
* Single-source shortest paths from a start vertex to all reachable vertices.
*
* @param <V> the type of vertices.
* @see Constructor
Expand All @@ -13,7 +13,7 @@
*/
public interface ShortestPathSolver<V> {
/**
* Returns the single-pair shortest path from a start defined in {@link Constructor#run(Graph, V)} to the goal.
* Returns the single-pair shortest path from a start vertex to the goal.
*
* @param goal the goal vertex.
* @return a list of vertices representing the shortest path.
Expand Down

0 comments on commit 4d7aaed

Please sign in to comment.