Skip to content

Commit 4b5cf09

Browse files
test
1 parent 3a349f2 commit 4b5cf09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/thealgorithms/backtracking/AllPathsFromSourceToTarget.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
import java.util.List;
55

66
/**
7-
* Program description - To find all possible paths from source to destination
7+
* Program description - To find all possible paths from source to destination
88
* <a href="https://en.wikipedia.org/wiki/Shortest_path_problem">Wikipedia</a>
99
*
1010
* @author <a href="https://github.com/siddhant2002">Siddhant Swarup Mallick</a>
1111
*/
1212
@SuppressWarnings({"rawtypes", "unchecked"})
1313
public class AllPathsFromSourceToTarget {
1414

15-
// No. of vertices in graph
15+
// Number of vertices in graph
1616
private final int v;
1717

1818
// To store the paths from source to destination

0 commit comments

Comments
 (0)