Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix typos in src/main/java/com/thealgorithms/datastructures/graphs/Be…
…llmanFord.java
  • Loading branch information
khanhkhanhlele committed Nov 5, 2025
commit fe7873af5ce9452f787b5ab5b7a7ca5741dbd780
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public void show(int source, int end,
break;
}
}
if (neg == 0) { // Go ahead and show results of computaion
if (neg == 0) { // Go ahead and show results of computation
System.out.println("Distance is: " + dist[end]);
System.out.println("Path followed:");
System.out.print(source + " ");
Expand Down