Skip to content

Commit d1e7501

Browse files
authored
1 parent b8c1177 commit d1e7501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DataStructures/Graphs/BellmanFord.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public static void main(String args[]) {
8787
System.out.println("Negative cycle");
8888
break;
8989
}
90-
if (neg == 0) // Go ahead and show results of computaion
90+
if (neg == 0) // Go ahead and show results of computation
9191
{
9292
System.out.println("Distances are: ");
9393
for (i = 0; i < v; i++) System.out.println(i + " " + dist[i]);

0 commit comments

Comments
 (0)