From 8ceea5609d83dfd3318276b25b35125014d094bd Mon Sep 17 00:00:00 2001 From: JeonSeongBae Date: Wed, 6 Dec 2017 13:17:56 +0900 Subject: [PATCH] verticies to vertices --- Data Structures/Graphs/MatrixGraphs.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Data Structures/Graphs/MatrixGraphs.java b/Data Structures/Graphs/MatrixGraphs.java index 424e69b8..f064c012 100644 --- a/Data Structures/Graphs/MatrixGraphs.java +++ b/Data Structures/Graphs/MatrixGraphs.java @@ -80,7 +80,7 @@ class AdjacencyMatrixGraph { /** * 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 @@ class AdjacencyMatrixGraph { /** * 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