Skip to content

Commit 40ca7b7

Browse files
authored
Fix issue #44
1 parent 824946e commit 40ca7b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/maze/test_maze.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def heuristic_cost_estimate(self, n1, n2):
7272
return math.hypot(x2 - x1, y2 - y1)
7373

7474
def distance_between(self, n1, n2):
75-
"""this method always returns 1, as two 'neighbors' are always adajcent"""
75+
"""this method always returns 1, as two 'neighbors' are always adjacent"""
7676
return 1
7777

7878
def neighbors(self, node):

0 commit comments

Comments
 (0)