We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8c1177 commit d1e7501Copy full SHA for d1e7501
DataStructures/Graphs/BellmanFord.java
@@ -87,7 +87,7 @@ public static void main(String args[]) {
87
System.out.println("Negative cycle");
88
break;
89
}
90
- if (neg == 0) // Go ahead and show results of computaion
+ if (neg == 0) // Go ahead and show results of computation
91
{
92
System.out.println("Distances are: ");
93
for (i = 0; i < v; i++) System.out.println(i + " " + dist[i]);
0 commit comments