Skip to content

Commit ad4067d

Browse files
authored
Change 'Path is find!' to 'Path found!' (AtsushiSakai#773)
Minor - correct grammatical error :)
1 parent 3dc9699 commit ad4067d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PathPlanning/AStar/a_star_searching_from_two_side.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def draw_control(org_closed, goal_closed, flag, start, end, bound, obstacle):
267267
if node_intersect: # a path is find
268268
path = get_path(org_closed, goal_closed, node_intersect[0])
269269
stop_loop = 1
270-
print('Path is find!')
270+
print('Path found!')
271271
if show_animation: # draw the path
272272
plt.plot(path[:, 0], path[:, 1], '-r')
273273
plt.title('Robot Arrived', size=20, loc='center')

0 commit comments

Comments
 (0)