diff --git a/Data Structures/Graphs/MatrixGraphs.java b/Data Structures/Graphs/MatrixGraphs.java index 424e69b8e675..f064c012d043 100644 --- a/Data Structures/Graphs/MatrixGraphs.java +++ b/Data Structures/Graphs/MatrixGraphs.java @@ -80,7 +80,7 @@ public boolean edgeDoesExist(int from, int to) { /** * This method adds an edge to the graph between two specified - * verticies + * vertices * * @param from the data of the vertex the edge is from * @param to the data of the vertex the edge is going to @@ -101,7 +101,7 @@ public boolean addEdge(int from, int to) { /** * this method removes an edge from the graph between two specified - * verticies + * vertices * * @param from the data of the vertex the edge is from * @param to the data of the vertex the edge is going to