Skip to content

Commit ab6c03a

Browse files
committed
Typo fixes
1 parent 11eebf2 commit ab6c03a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pygorithm/data_structures/graph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def get_code(self):
6060
import inspect
6161
return inspect.getsource(TopologicalSort)
6262

63-
class CheckCycleDirected(object):
63+
class CheckCycleDirectedGraph(object):
6464
def __init__(self):
6565
self.graph = {}
6666
self.count = 0
@@ -114,7 +114,7 @@ def get_code(self):
114114
import inspect
115115
return inspect.getsource(CheckCycleDirected)
116116

117-
class CheckCycleUndirected(object):
117+
class CheckCycleUndirectedGraph(object):
118118
def __init__(self):
119119
self.graph = {}
120120
self.count = 0

0 commit comments

Comments
 (0)