Skip to content

Commit 30a8381

Browse files
committed
..
1 parent 64ddfa2 commit 30a8381

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/bootcamp/decision_waypoint_landing_pads.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def run(
9393
if self.has_sent_landing_command:
9494
command = commands.Command.create_land_command()
9595

96-
# finding nearest landing pad anf setting relative destination
96+
# finding nearest landing pad and setting relative destination
9797
elif not self.has_sent_landing_command and proximity < self.acceptance_radius**2:
9898
smallest_dist = float("inf")
9999
for landing_pads in landing_pad_locations:
@@ -108,7 +108,7 @@ def run(
108108
)
109109
self.has_sent_landing_command = True
110110

111-
# setting relative destination to waypoint
111+
# setting relative destination to designated waypoint
112112
elif proximity > self.acceptance_radius and not self.has_sent_landing_command:
113113
command = commands.Command.create_set_relative_destination_command(
114114
self.waypoint.location_x, self.waypoint.location_y

0 commit comments

Comments
 (0)