diff --git a/DataStructures/Graphs/BellmanFord.java b/DataStructures/Graphs/BellmanFord.java index b817b6dcd5c8..6d4c84f3026b 100644 --- a/DataStructures/Graphs/BellmanFord.java +++ b/DataStructures/Graphs/BellmanFord.java @@ -48,7 +48,7 @@ public static void main(String args[]) { public void go() // Interactive run for understanding the class first time. Assumes source vertex is 0 and - // shows distaance to all vertices + // shows distance to all vertices { Scanner sc = new Scanner(System.in); // Grab scanner object for user input int i, v, e, u, ve, w, j, neg = 0;