Skip to content

Commit 2de7d57

Browse files
committed
Fix Router.java javadoc typo.
1 parent 322b528 commit 2de7d57

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

proj3/src/main/java/Router.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ public class Router {
1414
* Return a List of longs representing the shortest path from the node
1515
* closest to a start location and the node closest to the destination
1616
* location.
17-
* where the longs are node IDs.
1817
* @param g The graph to use.
1918
* @param stlon The longitude of the start location.
2019
* @param stlat The latitude of the start location.
2120
* @param destlon The longitude of the destination location.
2221
* @param destlat The latitude of the destination location.
23-
* @return A list of id's in the order visited on the shortest path.
22+
* @return A list of node id's in the order visited on the shortest path.
2423
*/
2524
public static List<Long> shortestPath(GraphDB g, double stlon, double stlat,
2625
double destlon, double destlat) {

0 commit comments

Comments
 (0)